设置代理设置时,我遇到了firefox驱动程序的问题。设置已正确解决,但工作缓慢,Firefox驱动程序无法继续该程序。我的目的是打开谷歌然后键入一些搜索条件,提交此条件并打开显示的结果页面之一。当我不使用代理时,一切都很好。这是我的代理代码:
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("network.proxy.type", 1);
profile.setPreference("network.proxy.http","some Proxy");
profile.setPreference("network.proxy.http_port", port);
driver = new FirefoxDriver(profile);
答案 0 :(得分:0)
请尝试下面的一个:
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("network.proxy.type", ProxyType.AUTODETECT.ordinal());
WebDriver driver = new FirefoxDriver(profile);