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?
Since #177 you can make
.startreturn 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 likeor
Would you be interested in accepting a PR for that?