“Dropdown -Menü mit Selenium Python” Code-Antworten

Python Selenium Wählen Sie Dropdown

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

Verwenden Sie Selen mit einem Dropdown -Menü

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

Dropdown -Menü mit 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

Ähnliche Antworten wie “Dropdown -Menü mit Selenium Python”

Fragen ähnlich wie “Dropdown -Menü mit Selenium Python”

Weitere verwandte Antworten zu “Dropdown -Menü mit Selenium Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen