0

我想用 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 有人可以帮帮我吗?!

4

1 回答 1

1

尝试在Firefox浏览器中手动设置代理详细信息,看看您是否能够访问

于 2014-05-30T13:47:27.723 回答