我想用 Java 中的 Selenium 设置一个 FirefoxDriver。我尝试如下:
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("network.proxy.http", "proxy");
profile.setPreference("network.proxy.http_port", "1234");
WebDriver driver = new FirefoxDriver(profile);
driver.get("http://www.stackoverflow.com");
但它总是给我错误:
org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output:
谷歌后发现这是常见问题,但我没有找到任何解决方案!我正在使用 selenium-server-standalone-2.41.0.jar 和 Firefox 29.0 有人可以帮帮我吗?!