-
-
Notifications
You must be signed in to change notification settings - Fork 189
Open
Labels
Description
Since #177 you can make .start return a promise. But the timeout of waiting for an available port seems to be fixed at 10s. I propose to make this call more flexible so that a different timeout can be configured. Maybe it can look like
await chromedriver.start({
args: [ 'some-arg' ],
timeout: 30000
});or
await chromedriver.start([ 'some-arg' ], {
timeout: 30000
});Would you be interested in accepting a PR for that?
Reactions are currently unavailable