diff --git a/wdio.conf.js b/wdio.conf.js index 3d70b06f..2a6fc1bd 100644 --- a/wdio.conf.js +++ b/wdio.conf.js @@ -20,6 +20,8 @@ if (githubActionsChromeDriver && chromeDriverExists(githubActionsChromeDriver)) console.warn('ChromeDriver not found in expected locations. Using default.'); } +console.info(process.env.CHROME_BIN); + exports.config = { // // ==================== @@ -71,6 +73,7 @@ exports.config = { maxInstances: 4, browserName: 'chrome', 'goog:chromeOptions': { + binary: process.env.CHROME_BIN, args: ['headless', 'disable-gpu', 'no-sandbox'] }, }],