Skip to content

Commit

Permalink
Do not set ftpProxy capability (fixes #11)
Browse files Browse the repository at this point in the history
  • Loading branch information
vania-pooh committed Jul 16, 2021
1 parent 4d5961e commit cbab6b2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/test/java/com/aerokube/selenoid/TestProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ private DesiredCapabilities getProxyCapabilities(MutableCapabilities caps) {
Proxy proxy = new Proxy();
proxy
.setProxyType(Proxy.ProxyType.MANUAL)
.setHttpProxy(proxyString)
.setFtpProxy(proxyString);
.setHttpProxy(proxyString);

if (caps.getBrowserName().contains("chrome")) {
@SuppressWarnings("unchecked")
Expand Down

0 comments on commit cbab6b2

Please sign in to comment.