0

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
krishna beenavoina
  • 297
  • 1
  • 3
  • 9
  • 2
    What version of Firefox? What version of Selenium? – Arran Sep 04 '14 at 07:01
  • Firefox version = 32.0 and selenium-java-2.42.2 – krishna beenavoina Sep 04 '14 at 07:06
  • 1
    Considering it's a version of Firefox released a day or two ago, and considering there are a fair few changes in the DevTools & DOM engine, I highly suspect Selenium doesn't support this *yet*: https://developer.mozilla.org/en-US/Firefox/Releases/32 ...you'll need to give the Selenium development team time to support it - or dig out the code yourself and help them figure out what needs changing to support this version. – Arran Sep 04 '14 at 07:09
  • possible duplicate of [Firefox WebDriver doesn't work with Firefox 32](http://stackoverflow.com/questions/25646639/firefox-webdriver-doesnt-work-with-firefox-32) – Louis Sep 09 '14 at 16:26

3 Answers3

1

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:

Also see:

Community
  • 1
  • 1
alecxe
  • 462,703
  • 120
  • 1,088
  • 1,195
0

Please upgrade to 2.43.1 [http://www.seleniumhq.org/download/]. The new version works for FF32.

Jigs
  • 1
  • 2
0

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

Androdos
  • 653
  • 8
  • 11