Skip to content

Commit

Permalink
updated: fix the wdio options
Browse files Browse the repository at this point in the history
  • Loading branch information
GianlucaGuarini committed Nov 2, 2024
1 parent 96020d2 commit 8ddf3ad
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions wdio.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,13 @@ export const config = {
//
capabilities: [
{
// capabilities for local browser web tests
browserName: 'chrome', // or "firefox", "microsoftedge", "safari"
maxInstances: 5,
browserName: 'chrome',
acceptInsecureCerts: true,
// We need to extends some Chrome flags in order to tell Chrome to run headless
'goog:chromeOptions': {
args: ['--headless', '--disable-gpu', '--disable-dev-shm-usage'],
},
},
],

Expand Down

0 comments on commit 8ddf3ad

Please sign in to comment.