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.
2 parents 14af957 + 066bc72 commit b3ccbc2Copy full SHA for b3ccbc2
index.js
@@ -76,6 +76,11 @@ var webdriver_update = function(opts, cb) {
76
var options = (cb ? opts : null);
77
var args = ["update", "--standalone"];
78
if (options) {
79
+ if (options.webdriverManagerArgs) {
80
+ options.webdriverManagerArgs.forEach(function(element) {
81
+ args.push(element);
82
+ });
83
+ }
84
if (options.browsers) {
85
options.browsers.forEach(function(element, index, array) {
86
args.push("--" + element);
0 commit comments