We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40bfc5e commit 66dbd3cCopy full SHA for 66dbd3c
java/src/org/openqa/selenium/remote/service/DriverFinder.java
@@ -156,6 +156,8 @@ private List<String> toArguments() {
156
arguments.add(proxy.getSslProxy());
157
} else if (proxy.getHttpProxy() != null) {
158
arguments.add(proxy.getHttpProxy());
159
+ } else if (proxy.getProxyAutoconfigUrl() != null) {
160
+ arguments.add(proxy.getProxyAutoconfigUrl());
161
}
162
163
return arguments;
0 commit comments