首頁 >後端開發 >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