Is it possible to execute OpenTest scripts on a headless instance?
My actor file configuration is done as below, but the browser is called as default. Should that be enough to run the latest Chrome version on headless mode?
...
selenium:
# seleniumServerUrl: http://127.0.0.1:9515
desiredCapabilities:
browserName: chrome
chromeOptions:
args: [ --headless ]
chromeDriverExePath: C:/opentest/drivers/chromedriver.exe
...
Thanks!