1. 程式人生 > >selenium與geckodriver對應Firefox、chromedriver(2.37)對應Chrome版本

selenium與geckodriver對應Firefox、chromedriver(2.37)對應Chrome版本

Firefox各版本相容問題:

Selenium2不用裝驅動可以向前支援火狐瀏覽器

根據Selenium2的版本安裝相應版本的Firefox即可相容。若selenium2的版本和firefox不相容,需要升級selenium的jar包,或者是升級firefox。

切記:關掉forefox的升級功能,否則連本地Windows上的指令碼都跑不起來,且必須降級firefox。升級後,selenium指令碼正常啟動firefox。

      【Selenium】    ->  【FireFox】
       2.25.0        ->      18
       2.30.0        ->      19
       2.31.0        ->      20
       2.42.2        ->      29
       2.44.0        ->      33 (不支援31,2014/12/1)
       2.53.0        ->      43,46(不支援47)
       2.41.0        ->      26(綠色版本)
       2.44          ->      32.0-35.0
       2.53.0-2.53.6 ->      40.0.3
各firefox版本下載地址
http://ftp.mozilla.org/pub/firefox/releases/

各selenium jar包下載地址
http://selenium-release.storage.googleapis.com/index.html

在selenium下載頁面:http://www.seleniumhq.org/download/ (需FQ) 各個版本的changelog中,會記錄支援的firefox版本
備註:selenium V3.0之前都不支援firefox47.0. 所以,如果你是seleniumV3.0以及之前的版本就不要下載ff47.0以及ff47.0之後的版本了。

Selenium3
不向前支援火狐瀏覽器

Firefox v47以後版本直接執行會出現問題,要使用47.0以後的版本需要升級Selenium到3.x並安裝對應版本的firefox驅動外掛:geckodriver.exe

各種版本的geckodriver:https://github.com/mozilla/geckodriver/releases

從0.19.0版本的release notes可以看到建議使用的版本是:selenium3.5以上,Firefox55以上

Chrome各個版本對應的chromedriver版本: