We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4a1f1b commit 2382951Copy full SHA for 2382951
java/src/org/openqa/selenium/chrome/ChromeDriverService.java
@@ -269,6 +269,18 @@ public Builder withWhitelistedIps(String allowedListIps) {
269
return this;
270
}
271
272
+ /**
273
+ * Configures the comma-separated list of remote IPv4 addresses which are allowed to connect
274
+ * to the driver server.
275
+ *
276
+ * @param allowedListIps Comma-separated list of remote IPv4 addresses.
277
+ * @return A self reference.
278
+ */
279
+ public Builder withAllowedListIps(String allowedListIps) {
280
+ this.allowedListIps = allowedListIps;
281
+ return this;
282
+ }
283
+
284
/**
285
* Configures the format of the logging for the driver server.
286
*
0 commit comments