0
所以我想實現代理支持我正在做的應用程序,由於某種原因,當我嘗試使用代理,然後嘗試加載頁面只需要一段時間加載,然後只是說它無法連接。如果我不使用代理,頁面加載就好了。頁面沒有使用代理加載,但沒有工作
我的代碼如下所示。
public static void main (String[] args) {
String PROXY = "24.12.132.36:21872";
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("https://www.google.ca/");
}
注意:代碼取自硒的網站。