Answers for "selenium find text"

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
0

locate element using text

The only locator that works with text is xpath. 
Matching exact text		:    //tag[.=‘text’]
Matching partial text		:    //tag[contains(text(), ’text’)]
Posted by: Guest on December-04-2020

Code answers related to "selenium find text"

Python Answers by Framework

Browse Popular Code Answers by Language