Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
azharuddin
azharuddin
Active particpant
Active particpant
Posts : 13
Join date : 2017-02-03
Age : 31
Location : Hyderabad
https://jovisoftsolutions.com

Get HTML Source of WebElement in Selenium WebDriver using Python Empty Get HTML Source of WebElement in Selenium WebDriver using Python

Wed Jun 17, 2020 2:22 pm
I'm using the Python bindings to run Selenium WebDriver:
Code:
from selenium import webdriver
wd = webdriver.Firefox()
I know I can grab a webelement like so:
Code:
elem = wd.find_element_by_css_selector('#my-id')
And I know I can get the full page source with...
Code:
wd.page_source
But is there anyway to get the "element source"?
Code:
elem.source  # <-- returns the HTML as a string
The Selenium Webdriver docs for Python are basically non-existent and I don't see anything in the code that seems to enable that functionality.
Any thoughts on the best way to access the HTML of an element (and its children)?
Back to top
Permissions in this forum:
You cannot reply to topics in this forum