MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / setSslProxy

Method setSslProxy

java/src/org/openqa/selenium/Proxy.java:306–311  ·  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

304 * @return reference to self
305 */
306 public Proxy setSslProxy(String sslProxy) {
307 verifyProxyTypeCompatibility(ProxyType.MANUAL);
308 this.proxyType = ProxyType.MANUAL;
309 this.sslProxy = sslProxy;
310 return this;
311 }
312
313 /**
314 * 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