如何使用 Selenium Webdriver 和 Python 从这个非选择下拉菜单中选择这个元素
Posted
技术标签:
【中文标题】如何使用 Selenium Webdriver 和 Python 从这个非选择下拉菜单中选择这个元素【英文标题】:How to select this element from this non select drop-down menu using Selenium Webdriver and Python 【发布时间】:2021-12-30 00:05:22 【问题描述】:我正在尝试使用 Selenium 从该页面的下拉菜单中选择第二个选项(带有文本“24 个单词”):https://www.myetherwallet.com/wallet/access/software?type=mnemonic
我可以使用这段代码点击下拉菜单来显示 2 个选项:
drop_down_menu = driver.find_element(By.XPATH, '//div[@class="v-select__slot"]')
drop_down_menu.click()
但是我无法选择第二个选项(或任何选项)。我无法使用 Selenium Select 类,因为下拉菜单元素不是 Select 类型元素。我尝试了以下 2 段代码但没有成功:
select_24_words = WebDriverWait(driver, 10).until(EC.text_to_be_present_in_element_value(
(By.CSS_SELECTOR, 'div#list-item-252-1.v-list-item.v-list-item--link.theme--light'),'24'))
select_24_words.click()
和
select_24_words = driver.find_element(By.XPATH, '//div[@id="list-item-252-1"]')
select_24_words.click()
谁能帮忙?
【问题讨论】:
【参考方案1】:使用element_to_be_clickable
条件作为xpath - //div[text()='24 words']
并且能够点击24 word
选项。
尝试如下一次。
driver.get("https://www.myetherwallet.com/wallet/access/software?type=mnemonic")
wait = WebDriverWait(driver,30)
wait.until(EC.element_to_be_clickable((By.CLASS_NAME,"v-select__selections"))).click()
wait.until(EC.element_to_be_clickable((By.XPATH,"//div[text()='24 words']"))).click()
【讨论】:
【参考方案2】:下拉菜单不是传统的html-select 元素,因此您不能使用Select
类。
要从下拉菜单中选择第二个选项(文本为“24 个单词”),您需要为element_to_be_clickable()
引入WebDriverWait,您可以使用以下任一Locator Strategies:
使用XPATH
:
driver.get("https://www.myetherwallet.com/wallet/access/software?type=mnemonic")
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//div[@class='v-select__selections']"))).click()
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//div[@class='v-list-item__title' and text()='24 words']"))).click()
浏览器快照:
注意:您必须添加以下导入:
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
【讨论】:
【参考方案3】:您需要点击下拉栏。然后是默认选项。
然后你可以点击第二个选项。
您只需要一个显式等待。
driver = webdriver.Chrome(driver_path)
driver.maximize_window()
driver.get("https://www.myetherwallet.com/wallet/access/software?type=mnemonic")
default_option = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "div.v-select__selection--comma")))
default_option.click()
second_option = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//div[text()='24 words']/ancestor::div[contains(@id,'item')]")))
second_option.click()
进口:
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
【讨论】:
以上是关于如何使用 Selenium Webdriver 和 Python 从这个非选择下拉菜单中选择这个元素的主要内容,如果未能解决你的问题,请参考以下文章
如何使用PHP绑定设置Selenium(WebDriver和Server)
如何使用 Java 在 selenium webdriver 中打开新选项卡,或者如何使用 selenium webdriver 使用动作类在 selenium 中按 ctrl + T [重复]
如何使用 Selenium WebDriver 和 Java 处理日历弹出窗口?
如何使用selenium webdriver来判断一个网页加载完毕