This repository was archived by the owner on Nov 29, 2018. It is now read-only.
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
InternetExplorer UsePerProcessProxy is not working in Latest Selenium Version #8257
Open
Description
Originally reported on Google Code with ID 8257
InternetExplorer UsePerProcessProxy is not working in Latest Selenium Version 2.43 and
2.44. Same use case is working fine in 2.41.0 version
Below sample code helps to reproduce the issue:
@Test
public void testNode() throws MalformedURLException {
DesiredCapabilities dc = DesiredCapabilities.internetExplorer();
dc.setCapability("ie.usePerProcessProxy", "true");
Proxy proxy = new Proxy();
proxy.setProxyType(ProxyType.MANUAL);
String proxyHost = "localhist:9788";
proxy.setHttpProxy(proxyHost);
proxy.setFtpProxy(proxyHost);
proxy.setSslProxy(proxyHost);
dc.setCapability(CapabilityType.PROXY, proxy);
RemoteWebDriver driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"),
dc);
driver.get("http://www.google.com");
System.out.println("Page title is: " + driver.getTitle());
}
What is the expected output? What do you see instead?
Google should load in Internet Explorer browser with proxy settings.
Selenium version:2.44.0 and 2.43.0
OS:Windows &
Browser:Internet Explorer
Browser version: 9
Reported by sundaram.rajendran
on 2014-12-05 07:35:39