Python selenium 下拉框定位

2022-06-15 22:03:28 字數 519 閱讀 1616

首先selenium 很人性化的給提供了乙個select的模組,供處理下來選單,首先我們需要匯入select,通過from selenium.webdriver.support.select import select來匯入。

select中提供幾個用於定位的option的方法,下面看一下具體的方法

主要把select方法總結了一下分為三大類:

1.選擇列表

# 針對按索引進行切換option屬性

select(driver.find_element_by_id('id')).select_by_index(0)

#針對按value進行切換option屬性

select(driver.find_element_by_id('id)).select_by_value('abc')

#針對按text文字進行切換option屬性

select(driver.find_element_by_id('id')).select_by_visible_text ('text')

Python Selenium環境搭建

安裝python 設定 python 的環境變數 安裝目錄 安裝目錄 scripts 使用 pip安裝 selenium pip install selenium 安裝完python pip工具,在安裝目錄的 scripts 目錄下。在 dos下直接執行 pip install selenium 即...

Python Selenium 學習筆記

1 判斷元素是否存在 try driver.find element.xx a true except a false if a true print 元素存在 elif a false print 元素不存在 2 判斷元素是否顯示 driver.find element by id outputb...

Python Selenium錯誤小結

因為要使用web應用,所以開始用起了,selenium包,安裝倒是挺容易的,但就是出了很多bug。filenotfounderror winerror 2 系統找不到指定的檔案。通過錯誤反饋發現是要把該軟體加到路徑裡面,但是,設定了系統環境變數後發現還是不行,最後,使用了乙個非常原始的方法 brow...