win10
python 3.6.0
selenium 3.7.0
pycharm-community-2018.3.5
geckodriver-v0.19.1
firefox 56.0
(1)準備工作:
(2)安裝 selenium 3.7.0
(3)測試:
在python中輸入命令import selenium或help(selenium),測試是否可用。
(2)選擇版本:v0.19.1
selenium與geckodriver、firefox的對應關係:
print("瀏覽器是:{},url是:{},網頁title是:{}".format(cu_name,cu_url,cu_title))
print("網頁內容是:\n")
print(cu_html)
print("當前視窗控制代碼:{}".format(cu_handle))
過程或實驗截圖:
遇到問題及解決辦法:
每個機器的環境存在一定差別,版本之間的相容問題也存在差別,可以通過更換geckodriver的版本不斷嘗試適合機器的版本。
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...