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

Method setFtpProxy

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

Specify which proxy to use for FTP connections. @param ftpProxy the proxy host, expected format is hostname.com:1234 @return reference to self @deprecated setFtpProxy is deprecated and will be removed in a future release.

(String ftpProxy)

Source from the content-addressed store, hash-verified

237 * @deprecated setFtpProxy is deprecated and will be removed in a future release.
238 */
239 @Deprecated
240 public Proxy setFtpProxy(String ftpProxy) {
241 verifyProxyTypeCompatibility(ProxyType.MANUAL);
242 this.proxyType = ProxyType.MANUAL;
243 this.ftpProxy = ftpProxy;
244 return this;
245 }
246
247 /**
248 * Gets the HTTP proxy.

Callers 4

manualProxyToJsonMethod · 0.95
ProxyMethod · 0.95
testManualProxyMethod · 0.80

Calls 1

Tested by 3

manualProxyToJsonMethod · 0.76
testManualProxyMethod · 0.64