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

Method setSocksUsername

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

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

(String username)

Source from the content-addressed store, hash-verified

370 * @return reference to self
371 */
372 public Proxy setSocksUsername(String username) {
373 verifyProxyTypeCompatibility(ProxyType.MANUAL);
374 this.proxyType = ProxyType.MANUAL;
375 this.socksUsername = username;
376 return this;
377 }
378
379 /**
380 * Gets the SOCKS proxy's password. Supported by SOCKS v5 and above.

Callers 4

manualProxyToJsonMethod · 0.95
ProxyMethod · 0.95
testManualProxyMethod · 0.80

Calls 1

Tested by 3

manualProxyToJsonMethod · 0.76
testManualProxyMethod · 0.64