是否已删除在驱动程序实例中设置代理的Webdriver支持?无法使用所需功能在驱动程序中设置代理

时间:2018-07-24 11:14:09

标签: eclipse maven intellij-idea http-proxy desiredcapabilities

我有以下代码:

================================================ ====================

公共类LoadBrowserAndSurf {

@测试 公共无效loadAndSurf(){

System.setProperty("webdriver.chrome.driver", "D:\\Desktop\\Automation Requirements\\chromedriver\\chromedriver.exe");
String proxyString= "13.228.117.219";
Proxy proxy = new Proxy();
proxy.setHttpProxy(proxyString);
DesiredCapabilities browserProxy =new DesiredCapabilities();
browserProxy.setCapability(CapabilityType.PROXY,proxy);
WebDriver wd = new ChromeDriver(browserProxy);
wd.get("http://www.globe.com.ph/");
}

}

================================================ =======

在日食中,此代码能够启动驱动程序版本,但是它无法访问代理。

在IntelliJ编辑器中尝试相同的代码时,它会删除驱动程序对象起始行中的ChromeDriver,即

WebDriver wd =新的ChromeDriver(browserProxy);

并以'ChromeDriver(org.openqa.selenium.Capabilities)被描述为'

在运行时启动代理时,是否可以在驱动程序实例中添加此代理?

0 个答案:

没有答案