gpt4 book ai didi

python - 在 python 中使用 selenium web 驱动程序从自动完成下拉列表中选择选项

转载 作者:太空宇宙 更新时间:2023-11-04 09:56:26 25 4
gpt4 key购买 nike

我必须从页面的下拉列表中选择选项。我尝试了下面的代码,但它显示语法错误。有人可以帮我解决这个问题吗?

web_element x = driver.find_element_by_xpath('//*[@id="txtSearchPhone"]')
Select sel = new Select(x)
sel.select_by_value("Iphone")

我也尝试过 Web_element、WebElement。但这显示第一行的语法错误。

web_element x = driver.find_element_by_xpath('//*[@id="txtSearchPhone"]')
^
SyntaxError: invalid syntax

最佳答案

您可以使用以下代码块从建议中选择选项 Apple iPhone 6 128GB:

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
driver = webdriver.Chrome(executable_path= r"C:\\Utility\\BrowserDrivers\\chromedriver.exe")
driver.maximize_window()
driver.get('https://tradein.vodafone.co.uk/#/topmodel')
driver.find_element_by_xpath("//input[@id='txtSearchPhone']").send_keys("Apple iPhone 6 128GB")
WebDriverWait(driver, 5).until(EC.element_to_be_clickable((By.XPATH, "//li[@class='ui-menu-item']/a[contains(@id, 'ui-id-')][text()='Apple iPhone 6 128GB']")))
driver.find_element_by_xpath("//li[@class='ui-menu-item']/a[contains(@id, 'ui-id-')][text()='Apple iPhone 6 128GB']").click()

关于python - 在 python 中使用 selenium web 驱动程序从自动完成下拉列表中选择选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45616513/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com