selenium-google-code-issue-archive
selenium-google-code-issue-archive copied to clipboard
InternetExplorer UsePerProcessProxy is not working in Latest Selenium Version
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
Reported by barancev
on 2014-12-05 08:19:29
- Labels added: Browser-IE
This issue is reproducible with
IEDriverServer_Win32_2.44.0.zip and Selenium 2.44.0 or
IEDriverServer_Win32_2.43.0.zip and Selenium 2.43.0
OS Version: Windows 7
Reported by sundaram.rajendran
on 2014-12-09 06:12:38
How did you understand it is not working?
Reported by barancev
on 2015-04-02 19:13:59
-
Status changed:
NeedsClarification
Reported by luke.semerau
on 2015-09-17 17:47:30
- Labels added: Restrict-AddIssueComment-Commit