首頁 > 後端開發 > Python教學 > 如何在 Python 中使用 Selenium 選擇下拉式選單值?

如何在 Python 中使用 Selenium 選擇下拉式選單值?

DDD
發布: 2024-12-07 10:33:15
原創
213 人瀏覽過

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板