-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Closed
Description
OS:
OS X EL Capitan
Browser:
Safari 10
I am using the below code to set proxy on Edge and Safari but it is not working.
But the same code works for firefox/chrome/IE. Can you please help me this ?
How to set proxy on Edge and Safari using RemoteWebDriver ?
Proxy proxy = new Proxy();
proxy.setAutodetect(false);
proxy.setProxyType(ProxyType.MANUAL);
proxy.setHttpProxy("xxxx:443");
proxy.setFtpProxy("xxxx:443");
proxy.setSslProxy("xxxx:443");
proxy.setSocksProxy("xxxxxx:443");
DesiredCapabilities capabilities = DesiredCapabilities.safari();
capabilities.setCapability(CapabilityType.PROXY, proxy);
Metadata
Metadata
Assignees
Labels
No labels