Web Driver Curl Exception Web Driver Curl Exception selenium selenium

Web Driver Curl Exception


I had the same problem, with the exact same error message. For some strange reason, it looked like starting the selenium server from command line did not work.

My solution turned out to be manually opening the selenium server through Windows Explorer, right click on the file, choose Open with -> Java Platform SE Binary.

Took me almost 3 hours to figure it out, so I hope this helps somebody.


I had this problem and it turned out a new version of Firefox was incompatible with the addon that Selenium uses to communicate with Firefox.

When you start your tests you should see the new Firefox window appear, and have 30 seconds or so before it goes away again. Within this time, if you type about:addons into the URL field and then click on "Extensions", you should see the "Firefox WebDriver" addon there, and it should be enabled.

For me it was disabled as it was incompatible with the latest Firefox version. So the solution in this case was to either downgrade Firefox or wait for an updated Selenium.

Note that the addon is only installed in the Firefox instance under test, so you won't see it when you use Firefox outside of Selenium.


I had this same problem, I forgot to run phantom.js before trying to do any browser tests. I ran phantomjs and it worked.