Dear Selenium Webdriver Specialists,
I can no longer launches / instantiates the Firefox webdriver with the following error on line 4:
org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host localhost on port
7055 after 45000 ms. Firefox console output:
*** LOG addons.manager: Application has been upgraded
*** LOG addons.xpi: startup
*** LOG addons.xpi: Skipping unavailable install location app-system-local
*** LOG addons.xpi: Skipping unavailable install location app-system-share
*** LOG addons.xpi: Ignoring file entry whose name is not a valid add-on ID: C:\DOCUME~1
\george\LOCALS~1\Temp\anonymous464046490888820385webdriver-profile\extensions\webdriver-staging
*** LOG addons.xpi: checkForChanges
*** LOG addons.xpi-utils: Opening database
*** LOG addons.xpi-utils: Creating database schema
*** LOG addons.xpi: New add-on fxdriver@googlecode.com installed in app-profile
*** LOG addons.xpi: New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global
*** LOG addons.xpi: New add-on {20a82645-c095-46ed-80e3-08825760534b} installed in winreg-app-
global
*** LOG addons.xpi: Updating database with changes to installed add-ons
*** LOG addons.xpi-utils: Updating add-on states
*** LOG addons.xpi-utils: Writing add-ons list
*** LOG addons.manager: shutdown
*** LOG addons.xpi: shutdown
*** LOG addons.xpi-utils: shutdown
*** LOG addons.xpi-utils: Database closed
Note that webdriver could not take control of Firefox browser without crashing even though it is being opened up with nothing on it. i.e. not able to pass line 4.
Below is the code snippet which has worked in the past but crashed on line 4:
4. WebDriver driver = new FirefoxDriver();
5. driver.get("http://www.abc.com/index.htm");
This issue has come about after having removed folder “E:\Mozilla Firefox Profile” and Firefox profiles using command “firefox.exe –p” to access Firefox Profile Manager. However, it appears that Firefox Profile Manager also created many folders such as “C:\DOCUME~1\george\LOCALS~1\Temp\anonymous464046490888820385webdriver- profile\extensions\webdriver-staging” in my home folder which do not exist any longer.
As a result, I would need your assistance with resolving this issue on the following areas:
( i ) How to cleanly purge / remove all Firefox profile lookup / setup references and simply launches / instantiates generic (no profile) Firefox browser to successfully pass line 4. ( ii ) Noticed that the “system proxy setting” is set when Firefox is launched / opened by Firefox Webdriver, which suggests that it is still using profile from some where, but don’t know what & where. Yet, “no proxy” was set when opening Firefox manually.
A Firefox profile was originally setup so that Firebug & Firepath could be activated / included in browser when launched / invoked from within Selenium webdriver.
I am running Java 1.7.0_11, Selenium Webdriver 2.25.0 on Windows XP & 7 platforms.
Your assistance would be much appreciated.
Thanks,
George