Skip to content

Commit

Permalink
fix an error in proxy setting for FirefoxDriver.
Browse files Browse the repository at this point in the history
  • Loading branch information
vmi committed Apr 29, 2017
1 parent aa80ac5 commit 819d388
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected DesiredCapabilities setupProxy(DesiredCapabilities caps, DriverOptions
String proxy = p[0];
int port = p.length == 2 ? Integer.parseInt(p[1]) : 80;
JsonObject json = new JsonObject();
json.addProperty("proxyType", "MANUAL");
json.addProperty("proxyType", "manual");
json.addProperty("httpProxy", proxy);
json.addProperty("httpProxyPort", port);
json.addProperty("sslProxy", proxy);
Expand Down

0 comments on commit 819d388

Please sign in to comment.