首页 >后端开发 >Python教程 >如何在 Python 中使用 Selenium 选择下拉菜单值?

如何在 Python 中使用 Selenium 选择下拉菜单值?

DDD
DDD原创
2024-12-07 10:33:15222浏览

How to Select a Drop-Down Menu Value with Selenium in Python?

使用 Python 使用 Selenium 选择下拉菜单值

您有一个下拉菜单,并且您需要选择的元素有id 等于“fruits01”。

  1. 单击它。
inputElementFruits = driver.find_element_by_xpath("//select[id='fruits']").click()
  1. 选择所需的元素。

您尝试使用 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn