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