我尝试使用代理与selenium网络驱动程序一样here
但它不起作用。有什么问题?
String PROXY = "host:port"; //real values
org.openqa.selenium.Proxy proxy = new org.openqa.selenium.Proxy();
proxy.setHttpProxy(PROXY)
.setFtpProxy(PROXY)
.setSslProxy(PROXY);
DesiredCapabilities cap = new DesiredCapabilities();
cap.setCapability(CapabilityType.PROXY, proxy);
WebDriver driver = new FirefoxDriver(cap);
driver.get("http://google.com/");
Firefox打开但没有显示任何内容,最后我在控制台中重温:
org.openqa.selenium.firefox.NotConnectedException:无法连接 在45000 ms之后在端口7055上托管127.0.0.1。