“Menú desplegable con Selenium Python” Código de respuesta

Python Selenium Seleccione desplegable

from selenium import webdriver
from selenium.webdriver.support.ui import Select

driver = webdriver.Firefox()
driver.get('url')

select = Select(driver.find_element_by_id('fruits01'))

# select by visible text
select.select_by_visible_text('Banana')

# select by value 
select.select_by_value('1')
Ugly Unicorn

Uso de Selenium con un menú desplegable

driver.findElement(By.id("dropdownlistone")).click(); // To click on drop down list
driver.findElement(By.linkText("india")).click(); // To select a data from the drop down list
Ugly Unicorn

Menú desplegable con Selenium Python

action=ActionChains(driver)
action.move_to_element(driver.find_element_by_xpath('/html/body/header/header/div[3]/ul/li[2]/a'))
action.perform()
driver.find_element_by_xpath('/html/body/header/header/div[3]/ul/li[2]/ul/li[1]/a').click()
Jorge Basto

Respuestas similares a “Menú desplegable con Selenium Python”

Preguntas similares a “Menú desplegable con Selenium Python”

Más respuestas relacionadas con “Menú desplegable con Selenium Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código