Ejemplo 1: elemento de búsqueda de selenio por contenido
driver.find_elements_by_xpath("//*[contains(text(), 'My Button')]")
Ejemplo 2: obtener selenio de texto
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
Ejemplo 3: elemento de búsqueda de selenio de python por texto
# Find element by it's visible text
driver.find_element(By.XPATH, "//*[text()'the visible text here...']").click()
# Don't forget to import the following module for this to work
from selenium.webdriver.common.by import By
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)