I am running webdriver 2.53.1 against firefox 45.9.0ESR on Redhat Linux 6.6. FirefoxDriver
object gets created successfully and firefox launches with blank page (about:blank
) as expected. But when I do the 'get' to open the url, it fails with UnreachableBrowserException
with underlying cause as org.apache.http.NoHttpResponseException: localhost:7055 failed to respond
.
Preferences set for FirefoxProfile
app.update.auto = false
app.update.enabled = false
app.update.silent = false
media.gmp-provider.enabled = false
webdriver.log.file = webdriver_debug.log
webdriver.firefox.logfile = firefox_browser.log
My observations
- Browser is running and is not killed
- Browser has webdriver addon added.
- By 'netstat' I see webdriver listening on port 7055
- Though I configured to dump firefox and webdriver logs, nothing gets dumped.
What I tried so far
- Handling the exception and retrying does not help
- The firefox is a tar ball extract. I tried removing the folder and extracting again, but that did not help either.
- Used
navigate().to(url)
instead ofget(url)
but result is same.
NOTE: The JRE 7 is used for running
Upgrading Selenium We cannot upgrade the selenium or firefox as there are many other dependent layers to be upgraded for selenium/firefox to upgrade.