web-dev-qa-db-ja.com

どのFirefoxバージョンがSelenium 2.53.0と互換性がありますか?

どのFirefoxバージョンがSelenium 2.53.0と互換性がありますか? Firefox 45.0を試しましたが、この例外が発生しています:

org.openqa.Selenium.WebDriverException: Failed to connect to binary           
FirefoxBinary(/Applications/Firefox.app/Contents/MacOS/firefox-bin) on   port 7055; process output follows: 
foreignInstall":false,"hasBinaryComponents":false,"strictCompatibility":false,"l   ocales":[],"targetApplications":[{"id":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","minVersion":"45.0","maxVersion":"45.*"},{"id":"[email protected]","minVersion":"0","maxVersion":"10"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true}
27
user16165

Firefox 47.0でSelenium Webdriver 2.53.0を実行すると、同様の問題が発生しました。

Selenium Webdriver 2.53.0は、Firefox 46.0で動作します。上記のバージョンは https://support.mozilla.org/en-US/kb/install-older-version-of-firefox にあります。

36
Jehoshuah

こんにちは、私は同じ問題を抱えていました。あなたがあなたの問題を解決したことを願っていますが、私の答えが誰かを助けるかもしれません。

firefox 26、Selenium 2.48.2、そして非常にうまく機能するウェブドライバーを見つけました。ダウンロードリンクは次のとおりです。

phpSeleniumWebDrive

Selenium-server-standalone-2.48.2

firefox26

0

また、追加しようとすることができます:

System.setProperty("webdriver.firefox.bin","C:\\Users\\AppData\\Local\\Mozilla Firefox\\firefox.exe");
WebDriver driver=new  FirefoxDriver(); 

動作していない場合は、FFをダウングレードする必要があります

0
Sathish kumar