I just recently started using Selenium Webdriver (as opposed to Selenium 1.0), and I am struggling with an issue that prevents me from running tests at all: When trying to launch webdriver.Firefox() i get an WebDriverException, see traceback
Exception occurs when initializing the Firefox webdriver:
driver = webdriver.Firefox()
After some research (where I found no posts about the same issue), I suspected that the company proxy was to blame, and defined a custom FirefoxProfile to configure a proxy for the webdriver, but that did not help either (tried both "no proxy" and manual proxy settings, equal to company standard). Also tried adding exception for localhost/127.0.0.1, that did not help either.
Has anyone faced the same issue, and hopefully solved it?