I am using Selenium WebDriver 2.39.0 + Firefox 26.0.
My Firefox driver instantiate and I am successfully able to log in into my application.
After that my script is not able to perform any further actions. But the same is working fine on WebDriver 2.39.0 + IE 9.
Please suggest!
Error appears as below:
org.openqa.selenium.remote.UnreachableBrowserException: Error communicating with the remote browser. It may have died.
Build info: version: '2.39.0', revision: '14fa800511cc5d66d426e08b0b2ab926c7ed7398', time: '2013-12-16 13:18:38'
can you use below code to initialize the firefox browser and give it a try:
FirefoxProfile firefoxProfile = new ProfilesIni().getProfile("default");
WebDriver driver = new FirefoxDriver(firefoxProfile);
Try updating Firefox. Just make sure that the version of WebDriver you have is compatible with the version of Firefox you have by going to the Selenium site.
Below are some of the configurations that works..
Please try
1) upgrading from Selenium 2.41.0 to 2.44.0 worked for me.
Using Firefox v33.1.1
2) Install Selenium 2.45 + FF 36.0.4 .the issue will be resolved
3) it works with selenuim 2.43 and firefox 32.0.3
4) selenium-java (2.45.0) with FF 34.0 works!
As per the log, browser is not interacting.Try to update your FF and selenium server as well.
I did have this error 2 days ago. The Firefox version is too new for the web-driver and is not compatible with each other, try installing an older version of Firefox. (I use Firefox version 36.0.1 with Selenium 2.48.2 and works perfect).
Selenium webdriver version and Firefox version should be in sync. Webdriver version is not compatible with latest version of Firefox. This is most common issue, try to install older version of Firefox. With new selenium 3.0 we won't see this issue. We use geckodriver. Hope this information helps.
Related
I am using selenium webdriver and using chrome version 77 but i m getting an error
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 75.
Like the error message says, your ChromeDriver supports Chrome version 75 and you are using Chrome 77. You have to keep your ChromeDriver updated to follow the Chrome versions. To update ChromeDriver: Chrome Driver
If for any reason you can't download the latest ChromeDriver you could downgrade your Chrome. This link might help for that: Rollback chrome
I am using Firefox version of 57.0 in my system, and for automation I am using selenium standalone server of 3.0.1 and gecko driver of 0.12.0. The below code is being used for invoking the firefox browser:
System.setProperty("webdriver.gecko.driver",properties.getProperty("GeckoDriverPath"));
driver = new FirefoxDriver();
But during execution after launching the browser it is not being navigated to the desired URL.
Please let me know if I have missed any steps.
Try to download the latest version geckodriver - https://github.com/mozilla/geckodriver/releases
It throws org.openqa.selenium.WebDriverException: disconnected: unable to connect to renderer.
Chromedriver version: 2.33
Chrome browser version: 62.0
Selenium WebDriver: 3.6.0
According to the release notes if you are using:
Selenium 3.6.0
chromedriver 2.33
Chrome browser 62
You shouldn't have problem. I'm using these and I haven't this issue. Make sure about these versions.
I have the same problem from this morning. As per previous answer updated chrome driver to 2.33 and resolved issue. Chromedriver download link:- https://chromedriver.storage.googleapis.com/index.html?path=2.33
I am using Google Chrome version 60. While configuring protractor, which Chrome driver and Selenium web-driver version should I use?
Thanks in advance.
Use latest one
ChromeDriver 2.32 from here
Selenium jar 3.5.1 from here
Is there any stable solution for firefox 47.0 browser incompatibility with selenium 2.53.0 without downgrading firefox into an older version.
Upgrade Firefox to 47.0.1 and selenium to 2.53.1.This should work.
You can upgrade to Firefox 47.0.1.
Firefox 47 crashing with selenium webdriver has been fixed in 47.0.1 as per the release notes - https://www.mozilla.org/en-US/firefox/47.0.1/releasenotes/.