Answers for "text locator in selenium"

1

selenium find element by content

driver.find_elements_by_xpath("//*[contains(text(), 'My Button')]")
Posted by: Guest on September-21-2020
5

get text selenium

add ".text" to the end of the finding element function, so for example,

to get the text from something like :
browser.find_element_by_xpath('Insert xpath')

you do:
browser.find_element_by_xpath('Insert xpath').text
Posted by: Guest on February-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language