capabilities: [{
// maxInstances can get overwritten per capability. So if you have an in-house Selenium
// grid with only 5 firefox instances available you can make sure that not more than
// 5 instances get started at a time.
maxInstances: 5,
//
browserName: 'chrome',
'goog:chromeOptions': {
w3c: false,
args: ['window-size=1920,1080', // - full screen size
'headless', // - run automation with or without actual browser. Headless === without
"no-sandbox", // - this flag is needed in order to run automation in docker container
"disable-gpu"] // - this flag is needed in order to run automation in docker container
}
// If outputDir is provided WebdriverIO can capture driver session logs
// it is possible to configure which logTypes to include/exclude.
// excludeDriverLogs: ['*'], // pass '*' to exclude all driver session logs
// excludeDriverLogs: ['bugreport', 'server'],
}],