最近嘗試跟着蟲師的OP模式所寫的bbs代碼,應用本身的項目嘗試修改,在第一步Remote啓動Firefox上便出錯,當前selenium2.53,firefox47.1,selenium server3.0.0b2.java
固然,首先須要啓動selenium server,不然會提示計算機拒絕訪問。命令行下進入server的文件夾,而後運行命令:git
java -jar selenium-server-standalone-3.0.0-beta3.jar
默認打開4444端口,若是提示該端口被佔用,能夠查看佔用的進程pid,而後中止該進程github
啓動selenium server後,運行出現以下錯誤web
Message: The path to the driver executable must be set by the webdriver.gecko.driver system property; for more information, see https://github.com/mozilla/ge... The latest version can be downloaded fromhttps://github.com/mozilla/ge...firefox
按照提示下載命令行
解壓放在火狐安裝文件下C:Program Files (x86)Mozilla Firefox,並在環境變量Path里加上該路徑,再也不提示這個錯誤。網上基本都是說selenium和ff的版本不匹配code