Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Selenium WebDriver + Firefox 7.0.1 incompatibility

I have a project where we have some Selenium tests. I have recently upgraded Firefox to 7.0.1 because it prompted me to and now the "WebDriver for Firefox" extension that these tests use is broken.

Firefox WebDriver is broken

How can I fix this? Must I uninstall this current version of Firefox and install an older one? Or is there a file I can edit to tell it to ignore that the version is different?

like image 696
Ryan Bigg Avatar asked Oct 11 '11 23:10

Ryan Bigg


3 Answers

An upgrade to Selenium webdriver to 2.8 would probably solve it.

http://web.archive.org/web/20120115040501/http://selenium.googlecode.com/svn/tags/selenium-2.8.0/rb/CHANGES

Unfortunately this has been the case for every Firefox upgrade since 5.0

like image 151
Thong Kuah Avatar answered Sep 22 '22 23:09

Thong Kuah


I would try with the latest selenium-webdriver. I run Firefox 7.0.1 as well and it works with selenium-webdriver 2.8.0.

like image 41
mhmhmhmh Avatar answered Sep 19 '22 23:09

mhmhmhmh


You can tell Firefox to ignore plugin and extension versions.

  1. Type about:config in the browser address bar
  2. Right-click and create a new boolean value called extensions.checkCompatibility.7.0
  3. Set this value to false

That should prevent the plugin raising an issue with its version compatibility to 7.0.1

like image 27
robzolkos Avatar answered Sep 22 '22 23:09

robzolkos