Answers for "how to get text from a tag selenium"

6

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
7

how to get text of a tag in selenium python

element.text
Posted by: Guest on April-15-2020

Code answers related to "how to get text from a tag selenium"

Python Answers by Framework

Browse Popular Code Answers by Language