How can I retrieve the HTML source of a specific WebElement in Selenium WebDriver using Python?

146    Asked by JakeSanderson in QA Testing , Asked on Jan 15, 2025

I am using Python with Selenium WebDriver and can perform basic operations like locating elements and fetching the full page source.

To retrieve the HTML source of a specific WebElement (including its children) in Selenium WebDriver using Python, you can use the get_attribute('outerHTML') method. Here's how you can achieve it:


Solution

from selenium import webdriver
# Set up the WebDriver
driver = webdriver.Firefox() # You can use any browser WebDriver
driver.get("https://example.com") # Replace with your target URL
# Locate the element
element = driver.find_element_by_css_selector("#my-id") # Replace with your desired CSS selector
# Get the HTML source of the element
element_html = element.get_attribute("outerHTML")
print(element_html)
# Close the browser
driver.quit()

Explanation

Locate the Element:

Use methods like find_element_by_css_selector, find_element_by_id, or find_element (with By locators) to locate the desired WebElement.

Retrieve HTML Source:

outerHTML: Returns the HTML of the element including the element itself and all its children.

innerHTML: Returns the HTML inside the element, excluding the element itself.

Example:

If the HTML is:


    Hello World

outerHTML will return:


    Hello World

innerHTML will return:

  Hello World

Print or Process the HTML:

The get_attribute("outerHTML") method returns the HTML as a string, which you can print or further process in your script.

Notes

  • Replace #my-id with the actual CSS selector or XPath of the element you want to target.

If you're using Selenium 4, prefer find_element with By locators:

from selenium.webdriver.common.by import By
element = driver.find_element(By.CSS_SELECTOR, "#my-id")


Your Answer

Answers (23)

it is a really nice point of view. I usually meet people who rather say what they suppose others want to hear. Good and well written! I will come back to your site for sure!I was reading through some of your blog posts on this website and I conceive this website is rattling instructive! Retain posting.

Find out

1 Week

This blog is fantastic! I really appreciate how the writer breaks down complicated subjects into clear, manageable pieces. Each key point is explained thoroughly, and the visuals in the post make the content even more enjoyable to read. It’s an informative and easy-to-follow post that I’ll definitely come back to. Thanks for sharing such useful information, and I look forward to seeing more well-explained content from this blog in the future


information


1 Week

I would like to thnkx for the efforts you have put in writing this blog. I’m hoping the same high-grade web site post from you in the upcoming as well. In fact your creative writing abilities has encouraged me to get my own website now. Really the blogging is spreading its wings fast. Your write up is a great example of it.

elgustoesnuestro20


1 Week

loving the facts in this web site, you have carried out excellent job at the content . This appears simply ideal. All these tinny information are made with lot of heritage expertise. I really like it loads. This changed into a beneficial post and that i assume it is rather smooth to peer from the other remarks as is an informative post and it is very useful and informed. Therefore, i would like to thank you for the endeavors which you have made in writing this article. All of the content material is actually well-researched. Thank you

good data


1 Week

Your article was so well written and easy to follow! I loved how you organized the information in a way that made sense and was super helpful. The design of your blog is clean and simple, making it a joy to browse. I’ll definitely be checking back for more posts in the future. You’ve definitely gained a loyal reader with me. Keep doing what you’re doing?your content is top-notch!


토토지식백과


1 Week

Your website is a true example of how great content should be delivered. The design is user-friendly, and every detail feels well-thought-out. I admire how your posts are filled with valuable information yet remain easy to understand. It’s always a pleasure to learn something new here. Your dedication to sharing quality content inspires me to think about how I can better engage my audience. Please keep sharing your amazing insights because they’re a big help to readers like me. Thank you for all your hard work and creativity!

website



1 Week

Your article was so well writore posts in the future. You’ve definitely gained a loyal reader with me. Keep doing what you’re doing?your content is top-notch!

information


1 Week

loving the facts in this web site, you have carried out excellent job at the content . This appears simply ideal. All these tinny information are made with lot of heritage expertise. I really like it loads. This changed into a beneficial post and that i assume it is rather smooth to peer from the other remarks as is an informative post and it is very useful and informed. Therefore, i would like to thank you for the endeavors which you have made in writing this article. All of the content material is actually well-researched. Thank you


View data


1 Week

thank you for penning this simple and thts in addition to i can’t wait to read more thrilling thoughts from you. Incredible job you probably did as i saw your new blog which offers fine emotions and encourages me in my destiny steps. Thanks for importing this specified post. This weblog is simple to seize subscribers and appeal to the reader. I am feeling proud to be your subscriber; your publish is so excellent. Keep it up.

contents

1 Week

You actually make it look so easy with your performance but I find this matter to be actually something which I think I would never comprehend. It seems too complicated and extremely broad for me. I'm looking forward for your next post, I’ll try to get the hang of it!

Find out


1 Week

Interviews

Parent Categories