get element by text selenium code example
Example 1: 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
Example 2: how to locate element by using text
The only locator that works with text is xpath.
Matching exact text : //tag[.=‘text’]
Matching partial text : //tag[contains(text(), ’text’)]