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

Method setHttpProxy

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

Specify which proxy to use for HTTP connections. @param httpProxy the proxy host, expected format is hostname:1234 @return reference to self

(String httpProxy)

Source from the content-addressed store, hash-verified

260 * @return reference to self
261 */
262 public Proxy setHttpProxy(String httpProxy) {
263 verifyProxyTypeCompatibility(ProxyType.MANUAL);
264 this.proxyType = ProxyType.MANUAL;
265 this.httpProxy = httpProxy;
266 return this;
267 }
268
269 /**
270 * Gets proxy bypass (noproxy) addresses.

Callers 7

testManualProxyMethod · 0.95
manualProxyToJsonMethod · 0.95
asProxyMethod · 0.95
ProxyMethod · 0.95

Calls 1