對於select>option結構的下拉列表定位總結以下兩種方法:
1.定位父元素select,然後通過tag name找到所有option,得到option元素的陣列,然後通過陣列索引定位,最後click.
driver.find_element_by_id("test").find_elements_by_tag_name("option")[0].click();
2.用到了select類, 例項select物件有很多方法:
deselect_all(),全不選。
deselect_by_index(index),不選第 index 項。或者是 index+1項,忘了index從0 還是從1 開始了。
deselect_by_value( value),不選元素value屬性為value的項,聽著有點拗口,其實value值就是option標籤中value的值。
deselect_by_visible_text( text),不選標籤innerhtml為text的option
select_by_index( index),同上,選擇第 index 項。這個用於 option的text和value不固定的情況
select_by_value( value), 同上,選擇。
select_by_visible_text( text),同上,選擇。
from selenium.webdriver.support.ui import selectselect = select(driver.find_element_by_id("test"))
select.select_by_visible_text("edam")
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...