Python+Selenium環境
阿新 • • 發佈:2018-12-18
一.安裝Python
1.下載Python版本
https://www.python.org/downloads/windows/
2.安裝,並配置環境變數
環境變數配置: 方法一:使用cmd命令新增path環境變數 在cmd下輸入: path=%path%;D:\Python27 接著按"Enter"回車鍵。 其中: D:\Python27 是Python的安裝目錄。 方法二:在環境變數中新增Python目錄 (1) 右鍵點選"計算機",然後點選"屬性" (2) 然後點選"高階系統設定" (3) 選擇"系統變數"視窗下面的"Path",雙擊即可! (4) 然後在"Path"行,新增python安裝路徑即可(我的D:\Python27)。 ps:記住,路徑直接用分號";"隔開!
二.Selenium安裝和配置
安裝:pip install selenium
查詢:pip show selenium
三.瀏覽器的安裝
1.火狐:舊版firefox47,記得在firefox安裝外掛firebug和firepath
記得關閉firefox的自動安裝
下載地址:http://ftp.mozilla.org/pub/firefox/releases/
2.谷歌瀏覽器下載
四.安裝driver
1.Selenium 3以前,使用firefox瀏覽器不需要額外的driver。但是Selenium 3.X 對firefox瀏覽器也需要安裝相應的driver:
下載地址:https://github.com/mozilla/geckodriver/releases;
2.谷歌driver
下載地址:http://chromedriver.storage.googleapis.com/index.html
driver的路徑可以直接放在python路徑下,我這裡把driver放在了python的Scripts路徑下,同時把script路徑加入環境變數。
五.安裝Python的IDE整合開發環境,進行程式設計
1.Pycharm
備註:選擇Python安裝版本時:
可以通過下面3種途徑獲取
1.python:web-based installer 是需要通過聯網完成安裝的
2.executable installer 是可執行檔案(*.exe)方式安裝
3.embeddable zip file 嵌入式版本,可以整合到其它應用中。
例如:
執行環境:
Firefox瀏覽器版本:Firefox 47.0
Python:python v3.6.2
Selenium:3.7.0
Geckdriver:v0.15.0