Normally, one can specify chromeOptions (e.g. to setup a particular profile directory, set different window size, etc).
Seems like webdriver-reuse-session forces the following options:
"chromeOptions": {
"w3c": false,
"args": [
"--no-sandbox",
"--disable-infobars",
"--log-level=3",
"--disable-gpu",
"--window-size=1024,800"
]
},
with no facilities to change them. Was this a deliberate choice?
Normally, one can specify chromeOptions (e.g. to setup a particular profile directory, set different window size, etc).
Seems like
webdriver-reuse-sessionforces the following options:with no facilities to change them. Was this a deliberate choice?