Selenium 2.53 not working on Firefox 49.0.2 - selenium

Selenium : 2.53
Firefox : 49.0.2
Windows10 : 32bit
When I execute the selenium webdriver from eclipse get the following error "about:blank&utm_content=firstrun" in firefox

I also faced the same issue. After searching net, I found some of the links where they suggest to downgrade the firefox version. I am using 43.0.1 but you may try 46.0 also.

Selenium WebDriver no longer supports the default Firefox Driver. They are currently working on a new driver, called Marionette, for their new Gecko engine.
More details on Marionette you can find here: Marionette
If you want to use the default driver, you should downgrade your Firefox. Version 45.0.1 works fine for me.

Related

driver.switchTo().alert().sendKeys("Hello") not working for latest chrome driver- Selenium Webdriver -java

driver.switchTo().alert().sendKeys("Hello")
The above code for prompt is not working for latest chrome driver with selenium webdriver -java. It didn't throw any error. Except sendkeys all other actions accept(),dismiss() , getText() is working well. I have used ChromeDriver 2.29, selenium-3.3.1, Chrome Browser - Version 56.0.2924.87.
google chrome
Version 59.0.3071.109
chrome driver 2.30
selenium 3.4
i have this version for chrome.
driver.switchTo().alert().sendKeys("Helllo")
is working properly.
This is purely a display issue and the input of sendKeys(...) will be sent after you accept the Alert.
See also the answer in this Chromium issue:
https://bugs.chromium.org/p/chromedriver/issues/detail?id=1120#c11

What Selenium and Firefox version is best to use?

Which Selenium and Firefox versions shall I use to start learning Selenium. None of my code from Packt Publishing book "Selenium... a practical guide" is working.
The book says they Selenium Java 2.33.0 and Firefox 17.
Has anyone had any success running the book's code on any latest version of Selenium and Firefox? Please suggest.
Thanks in Advance.
Use selenium 2.53 and firefox 46. Firefox >= 47 use marionette driver, but is in development and some things dont work, like Actions.

It downloading only Selenium WebDriver 3.0.0-beta2.. 2.53.1 In selenium Web Driver i cant able to Download

Old Version WebDriver I can't able to download At present I am using 46.0 Version in Firefox and WebDriver 2.53.0 in Windows 7. It working Fine. But if I update my browser. I cant able to run the test case, it showing browser error.
I update my Browser 47.0 & 48.0beta and used Selenium WebDriver 3.0.0-beta2 that also showing error. now, the version I cant able to download. I am just struck in this. Any solution there for this??

Which Firefox version is compatible with Selenium 2.53.0?

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: 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":"xpcshell#tests.mozilla.org","minVersion":"0","maxVersion":"10"}],"targetPlatforms":[],"multiprocessCompatible":false,"seen":true}
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.
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
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

Not able to open firefox from selenium webdriver

I am getting the below error when i am running the selenium script.
org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output:
fTime":1409733904986}}},{"name":"winreg-app-user","addons":{"{e4f94d1e-2f53-401e-8885-681602c0ddd8}":{"descriptor":"C:\\ProgramData\\McAfee Security Scan\\Extensions\\{e4f94d1e-2f53-401e-8885-681602c0ddd8}.xpi","mtime":1396607774000}}},{"name":"app-profile","addons":{"fxdriver#googlecode.com":{"descriptor":"C:\\Users\\kishna\\AppData\\Local\\Temp\\anonymous3395727590319882631webdriver-profile\\extensions\\fxdriver#googlecode.com","mtime":1409812670363,"rdfTime":1409812670181}}}]
1409812670931 addons.xpi-utils DEBUG Opening XPI database C:\Users\kishna\AppData\Local\Temp\anonymous3395727590319882631webdriver-profile\extensions.json
1409812670931 addons.xpi DEBUG New add-on fxdriver#googlecode.com installed in app-profile
You are using selenium version that doesn't support Firefox version 32.
And since currently there is no selenium java package version that claiming support for Firefox 32, you need to downgrade your browser. In your case, downgrade it to Firefox 28, which is listed as supported by selenium 2.42.2.
See also similar problem here:
selenium and web2py from killer-web-development.com doesn't work
Also see:
Where can I find a definitive Selenium WebDriver to Firefox Compatibility Matrix?
Documentation confusion: what version of Firefox does Selenium support?
Is Selenium 2.42.2 webdriver compatible with Firefox 27.0.1?
Please upgrade to 2.43.1 [http://www.seleniumhq.org/download/]. The new version works for FF32.
You can follow link below in the future for check supported versions FF vs. WebDriver.
I use it if I want to update browser or webdriver library.
LINK: http://selenium.googlecode.com/git/java/CHANGELOG