Firefox 37 & Selenium Webdriver 2.45 - firefox

Are there any known compatibility issues with Firefox 37 & Webdriver 2.45? I am currently using Firefox 36 and Webdriver 2.45 (having had trouble with the prior release of Webdriver). Firefox is requesting that I update to 37.

Better don't do that, in my case after updating firefox to 37 - web driver 2.45 cannot start firefox session...So need to wait for web driver release.

We updated FireFox yesterday to 37.0.1 using selenium-java:2.45.0 from Maven and we have had no issues with any of our tests

Related

How can I achieve Protractor support for Firefox 48 and up?

For quite sometime now I have been trying to run protractor with Firefox (Windows) v48 and above to run my AngularJS application.
However, as per protractor docs:
WebDriver support for Firefox has changed recently, and Firefox version
48 does not work properly with the current tools. For the moment, we
recommend testing against Firefox 47
This information was updated 3 years ago and nothing seems to have been done afterward.
Versions
OS - Windows 10 64-bit
Protractor - 5.4.2
Firefox - 68
selenium-stanalone-server: 2.53.1
AngularJS - 1.6.9
I did raise an issue recently on GitHub for the same, but it has not received traction yet.
I would like to know if anyone has been able to get around the issue for Windows.
Yikes, Firefox 48 is probably 2-ish years old. What you'll need to use is geckodriver. webdriver-manager should download the latest geckodriver automatically and you can either use direct connect or selenium standalone server to run this.
To download only the geckodriver binary, you could use:
webdriver-manager update --chrome false --standalone false
Note: chromedriver and selenium standalone jar file are downloaded automatically and these flags will turn them off.
When you want to start the server, you'll just use:
webdriver-manager start
or you could use directConnect. Direct connect will work as long as you used
a local version of webdriver-manager. It will not work if you used a global installed version of webdriver-manager.

Which Firefox version is compatible with Selenium 2.48.0

who can help me?
Which Firefox version is compatible with Selenium 2.48.0
Selenium WebDriver 2.48 supports till firefox version 41.0 , For more details please have a look at changelog of selenium webdriver.
Selenium ChangeLOG
Selenium support for Firefox is the latest release, the previous release, the latest ESR release and the previous ESR release.
Selenium 2.48.0 is supported for Firefox from 24 to 41, unless I'm missing something.
I know I have used Selenium 2.47 with Firefox 41. Are you having specific issues with it?

Firefox version affects selenium webdriver test cases. What is the reason?

I have updated my Firefox version from v31 to v32. When I created my test cases in .net using web-driver, it was running perfectly in Firefox version 31 but as soon as I have updated my version to 32 it stopped running. It only opens the browser and doesn't navigate to URL. To solve this issue I uninstalled the v32 and installed v31 and its working fine. But I want to run on latest version.
Please advice. Any help would be appreciated.
Selenium WebDriver versions and Firefox versions are tightly coupled.
You need to use a Selenuim WebDriver version which supports Firefox v32. Usually the latest Firefox version supported in a particular Selenium WebDriver release is mentioned in the CHANGELOG.
If memory serves me, I believe Firefox v32 is supported in Selenium 2.43.0

Providing Firefox 28 programatically for Selenium Webdriver (w/ ruby)

Selenium-webdriver gem versions require specific firefox versions (always a lagging a bit, understandably). See: Unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055)
In this case, I require firefox 28 for gem version 2.41.0 (2014-03-28). See: http://selenium.googlecode.com/git/rb/CHANGES
My problem is I have Firefox 32 installed (up to date as of current). I need to provide a stable environment for my script which will likely run on other systems too. I can easily lock the gem version through bundler, but how do I provide Firefox 28 consistently across environments? Is it possible to ask selenium webdriver to use a local firefox 'installation'?
I am on Ubuntu but I would greatly prefer a more general solution. This is the install I would use for my system: http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/28.0/linux-x86_64/en-US/
It is possible to configure Selenium to use a different firefox install:
Selenium::WebDriver::Firefox.path = "/path/to/firefox"
Now I can download the required version, put it somewhere, and have Selenium use it.

Selenium webdriver not working with DOM elements in firefox 24.0

Webdriver unable to find elements in firefox 24.0.
The webdriver got stuck after maximizing the window and opening the url.
Trying to find webelement but webdriver does nothing and not giving any error/exception on the console
The same code working on Chrome and with lower version of firefox
This is caused by the incompatible Selenium version - most recent is 2.35 which is probably running only on FF 23. So you have to stick to the FF 23 until the new version of Selenium is released.
I've had a similar issue with the current version of selenium and had to downgrade all the way down to firefox v19 to gain stability.
If you are willing to risk some instability you can grab a dev snapshot that may already have the fix you need. The snapshots are at http://ci.seleniumhq.org/

Resources