When I launch FF 3.6 using Selenium-Server-Standalone-2.2.0.jar on Windows XP, I noticed that my firefox is launched with option - "Use System Proxy Settings"
I want to launch it with option - "No Proxy".
I had a look at proxy examples, like -
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("network.proxy.http", "localhost");
profile.setPreference("network.proxy.http_port", "3128");
WebDriver driver = new FirefoxDriver(profile);
But could not figure out how I can make it set to "No Proxy". Any suggestion?
~tarun
http://seleniumsoftwaretesting.blogspot.com/