PC端win10+selenium+瀏覽器(IE+Chrome+Firefox+Microsoft Edge)自動化測試驅動下載地址及環境配置

AnitaDusy發表於2020-09-25

1、IE11驅動下載地址:
http://selenium-release.storage.googleapis.com/index.html
下載3.0.0的版本,將其放在C:\Windows\System32目錄下(不用加入環境變數,預設在環境變數中)
檢測程式碼如下:

from selenium import webdriver
driver=webdriver.Ie()
driver.get('https://lanhuapp.com/web/#/item?fid=all&commonly=all')

2、Chrome驅動的下載地址:
http://chromedriver.storage.googleapis.com/index.html
http://npm.taobao.org/mirrors/chromedriver/
(找到與瀏覽器版本對應的驅動,下載後放到python的安裝根目錄下)
檢測程式碼如下:

from selenium import webdriver
driver=webdriver.Chrome()
driver.get('https://lanhuapp.com/web/#/item?fid=all&commonly=all')

3、Firefox驅動下載地址:
https://github.com/mozilla/geckodriver/releases
(下載版本為0.27.0,瀏覽器版本為80.0.1,驅動放在Python38\Scripts目錄下)
檢測程式碼如下:

from selenium import webdriver
driver=webdriver.Firefox()
driver.get('https://lanhuapp.com/web/#/item?fid=all&commonly=all')

4、Microsoft Edge驅動下載地址:
https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/
(找到與瀏覽器對應的版本,下載後將驅動放於瀏覽器同目錄下:C:\Program Files (x86)\Microsoft\Edge\Application目錄下)
檢測程式碼如下:

from selenium import webdriver
driver=webdriver.Edge("C:\Program Files (x86)\Microsoft\Edge\Application\msedgedriver.exe")
driver.get('https://lanhuapp.com/web/#/item?fid=all&commonly=all')

相關文章