1、首先匯入select (s大寫)
from selenium.webdriver.support.ui import select2、介面展示圖
3、使用三種方法對下拉框元素定位(gzcontent().xs() 這個是我進行分層管理的路徑,需要自己更換成想要的路徑)
"""下面用三種方法對下拉列表進行選擇"""# 通過index進行選擇下拉列表的值(根據排列的位置進行選擇)
select(gzcontent().xs()).select_by_index(1) # 選擇下拉列表的15
time.sleep(2)
# 通過value進行選擇(通過列表中value的值進行選擇)
select(gzcontent().xs()).select_by_value("2") # 選擇下拉列表的20
time.sleep(2)
# 通過選項文字進行選擇
select(gzcontent().xs()).select_by_visible_text("25") # 選擇下拉列表的25
time.sleep(2)
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...