使用 Python 使用 Selenium 选择下拉菜单值
您有一个下拉菜单,并且您需要选择的元素有id 等于“fruits01”。
inputElementFruits = driver.find_element_by_xpath("//select[id='fruits']").click()
您尝试使用 inputElementFruits.send_keys(.. .),但这种方法行不通。相反,请使用专门为处理下拉菜单元素而设计的 Selenium Select 类。
import selenium.webdriver.support.ui as select selectElement = Select(inputElementFruits) selectElement.select_by_visible_text('Mango') # choose by visible text
或者,您可以按值选择:
selectElement.select_by_value('2') # select by value ('2' corresponds to Mango)
参考文献:
[使用 Python 从下拉列表中选择选项的适当方法WebDriver](https://stackoverflow.com/questions/45897309/ Correct-way-to-select-an-option-from-a-dropdown-list-using-seleniums-python-webdriv)
以上是如何在 Python 中使用 Selenium 选择下拉菜单值?的详细内容。更多信息请关注PHP中文网其他相关文章!