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

Method setNoProxy

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

250 * @return reference to self
251 */
252 public Proxy setNoProxy(String noProxy) {
253 verifyProxyTypeCompatibility(ProxyType.MANUAL);
254 this.proxyType = ProxyType.MANUAL;
255 this.noProxy = noProxy;
256 return this;
257 }
258
259 /**
260 * 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