1. 安裝python
安裝配置步驟可以參考
2. 安裝selenium
在命令列輸入pip,檢視是否安裝,如果已經安裝pip安裝selenium命令為:
pip install –u selenium(安裝成功後可以看到列印如下,會顯示successfully 以及selenium版本號)
c:\users\lxc>pip install -u selenium
collecting selenium
downloading selenium-3.11.0-py2.py3-none-any.whl (943kb)
100% |████████████████████████████████| 952kb 29kb/s
installing collected packages: selenium
successfully installed selenium-3.11.0
chromedriver:
iedriver:
geckodriver(firefox):
並且解壓驅動程式到python安裝根目錄下。
參考:我用的chromdriver 2.36 對應的應該是 chrom 64-66版本
火狐的驅動要求firefox版本》47因此小於此版本的可以重灌了
4. 第乙個seleniutest檢查是否安裝完成
#!-*-coding = utf-8-*-fromseleniumimportwebdriver
browser=webdriver.chrome()
browser.get(
"")
brower_firefox=webdriver.firefox()
brower_firefox.get(
"")
測試正常打**狐和谷歌,如報錯請檢視錯誤資訊定位,一般沒啥問題的
的安裝配置 Manjaro Linux安裝配置
安裝wmtools 1.解除安裝舊版本 sudo pacman r open vm tools git clone 3.執行指令碼進行安裝 cd vmware tools patches sudo patched open vm tools.sh 安裝vim sudo pacman s vim 更新...
python配置安裝 配置安裝
scrapy框架安裝 安裝請參考 scrapy安裝 windows安裝方式 1.先確定windows是否安裝了python c users administrator python python 2.7.13 v2.7.13 a06454b1afa1,dec 17 2016,20 53 40 msc...
Selenium安裝與環境配置
一 概述 selenium主要用於web的自動化測試。selenium的主要套件有 1 selenium ide 乙個firefox外掛程式,配合firefox使用可以錄製網頁指令碼並執行測試 2 selenium rc selenium remote control 支援使用多種語言來編寫測試類,...