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

Method setNoProxy

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

Sets proxy bypass (noproxy) addresses @param noProxy The proxy bypass (noproxy) addresses separated by commas @return reference to self

(String noProxy)

Source from the content-addressed store, hash-verified

282 * @return reference to self
283 */
284 public Proxy setNoProxy(String noProxy) {
285 verifyProxyTypeCompatibility(ProxyType.MANUAL);
286 this.proxyType = ProxyType.MANUAL;
287 this.noProxy = noProxy;
288 return this;
289 }
290
291 /**
292 * Gets the SSL tunnel proxy.

Callers 5

manualProxyToJsonMethod · 0.95
canConfigureNoProxyMethod · 0.95
ProxyMethod · 0.95
testManualProxyMethod · 0.80

Calls 1

Tested by 4

manualProxyToJsonMethod · 0.76
canConfigureNoProxyMethod · 0.76
testManualProxyMethod · 0.64