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

Method setSocksPassword

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

Specifies a password for the SOCKS proxy. Supported by SOCKS v5 and above. @param password password for the SOCKS proxy @return reference to self

(String password)

Source from the content-addressed store, hash-verified

360 * @return reference to self
361 */
362 public Proxy setSocksPassword(String password) {
363 verifyProxyTypeCompatibility(ProxyType.MANUAL);
364 this.proxyType = ProxyType.MANUAL;
365 this.socksPassword = password;
366 return this;
367 }
368
369 /**
370 * Gets the proxy auto-configuration URL.

Callers 4

manualProxyToJsonMethod · 0.95
ProxyMethod · 0.95
testManualProxyMethod · 0.80

Calls 1

Tested by 3

manualProxyToJsonMethod · 0.76
testManualProxyMethod · 0.64