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

Method setSocksPassword

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

392 * @return reference to self
393 */
394 public Proxy setSocksPassword(String password) {
395 verifyProxyTypeCompatibility(ProxyType.MANUAL);
396 this.proxyType = ProxyType.MANUAL;
397 this.socksPassword = password;
398 return this;
399 }
400
401 /**
402 * 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