Which Firefox version is compatible with Selenium 2.53.0?

前端 未结 3 2051
旧巷少年郎
旧巷少年郎 2020-12-03 09:45

Which Firefox version is compatible with Selenium 2.53.0? I tried Firefox 45.0 and I am getting this exception:

org.openqa.selenium.WebDriverException: Faile         


        
相关标签:
3条回答
  • 2020-12-03 10:38

    Also you could try to add:

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

    if it is also not working, then you need to downgrade your FF

    0 讨论(0)
  • 2020-12-03 10:39

    I had the similar problem running Selenium Webdriver 2.53.0 with Firefox 47.0.

    Selenium Webdriver 2.53.0 works with Firefox 46.0. You can find the the mentioned version at https://support.mozilla.org/en-US/kb/install-older-version-of-firefox.

    0 讨论(0)
  • 2020-12-03 10:52

    hi I had the same problem, I hope you have solved yours, but maybe my answer can help someone else.

    i found firefox 26, selenium 2.48.2 and a webdriver that work very good together. here are the download links:

    phpSeleniumWebDrive

    selenium-server-standalone-2.48.2

    firefox26

    0 讨论(0)
提交回复
热议问题