MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / setSslProxy

Method setSslProxy

java/src/org/openqa/selenium/Proxy.java:274–279  ·  view source on GitHub ↗

Specify which proxy to use for SSL connections. @param sslProxy the proxy host, expected format is hostname.com:1234 @return reference to self

(String sslProxy)

Source from the content-addressed store, hash-verified

272 * @return reference to self
273 */
274 public Proxy setSslProxy(String sslProxy) {
275 verifyProxyTypeCompatibility(ProxyType.MANUAL);
276 this.proxyType = ProxyType.MANUAL;
277 this.sslProxy = sslProxy;
278 return this;
279 }
280
281 /**
282 * Gets the SOCKS proxy.

Callers 4

manualProxyToJsonMethod · 0.95
ProxyMethod · 0.95
testManualProxyMethod · 0.80

Calls 1

Tested by 3

manualProxyToJsonMethod · 0.76
testManualProxyMethod · 0.64