I cannot get it to run without it opening a visible browser window. I tried both with "headless" and "--headless" arguments
Note: I am NOT using Selenium.
Acording to this page headless mode is supported in MacOSX since version 60. I'm running version 61
https://developers.google.com/web/updates/2017/04/headless-chrome
Here's my configuration:
"chrome" : {
"desiredCapabilities": {
"javascriptEnabled": true,
"acceptSslCerts": true,
"browserName": "chrome",
"chromeOptions" : {
"args" : ["--headless"],
"binary": "google-chrome"
}
}
},