Course Content
Selenium Project
Source Page
driver.page_source
is a property in the selenium
library for Python that returns the HTML source code of the current web page being displayed in the web browser controlled by Selenium. When a Python script calls driver.page_source
, it retrieves the HTML source code of the web page and returns it as a string.
Task
- Use the
page_source
attribute to inspect the content of the html page.
Thanks for your feedback!
driver.page_source
is a property in the selenium
library for Python that returns the HTML source code of the current web page being displayed in the web browser controlled by Selenium. When a Python script calls driver.page_source
, it retrieves the HTML source code of the web page and returns it as a string.
Task
- Use the
page_source
attribute to inspect the content of the html page.