Home >Backend Development >Python Tutorial >How to Access the HTML Source of a WebElement in Selenium WebDriver with Python?
Obtaining HTML Source of WebElement using Selenium WebDriver in Python
In Selenium WebDriver, accessing the HTML source of an element and its contents can be achieved through specific methods.
To retrieve the HTML source of the element's content, you can use the get_attribute('innerHTML') method:
<code class="python">elem = wd.find_element_by_css_selector('#my-id') inner_html = elem.get_attribute('innerHTML')</code>
This will provide you with the HTML content within the element.
If you wish to obtain the HTML source of the element itself, including any child elements, use the get_attribute('outerHTML') method:
<code class="python">elem = wd.find_element_by_css_selector('#my-id') outer_html = elem.get_attribute('outerHTML')</code>
This method yields the HTML source as a string, containing the element and its children.
Note that this functionality is not explicitly documented in the Python bindings for Selenium WebDriver. However, it has been tested and confirmed to work with the ChromeDriver.
The above is the detailed content of How to Access the HTML Source of a WebElement in Selenium WebDriver with Python?. For more information, please follow other related articles on the PHP Chinese website!