Answers for "selenium .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
2

how to get text of a tag in selenium python

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

Python Answers by Framework

Browse Popular Code Answers by Language