Answers for "detect text with selenium python"

-2

python selenium find element by text

# Find element by it's visible text
driver.find_element(By.XPATH, "//*[text()='text here...']").click()

# Don't forget to import the following module for this to work
from selenium.webdriver.common.by import By
Posted by: Guest on April-08-2021
0

selenium assert text on page python

body_text = driver.find_element_by_tag_name('body').text
assert 'my text' in body_text
Posted by: Guest on April-12-2021

Python Answers by Framework

Browse Popular Code Answers by Language