From 14fe99967855b4f1b8ef23299f4cc0b8bf304248 Mon Sep 17 00:00:00 2001 From: Julian Keck <julian.keck9@kit.edu> Date: Fri, 10 Jan 2025 13:03:49 +0100 Subject: [PATCH] FIX: chromium and firefox runners --- nightwatch.conf.cjs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nightwatch.conf.cjs b/nightwatch.conf.cjs index 33436d1af..43f0a1caa 100644 --- a/nightwatch.conf.cjs +++ b/nightwatch.conf.cjs @@ -85,8 +85,8 @@ module.exports = { 'acceptInsecureCerts': true, 'moz:firefoxOptions': { args: [ - // '-headless', - // '-verbose' + // '-verbose', + '-headless' ], }, }, @@ -110,10 +110,10 @@ module.exports = { // w3c:false tells Chromedriver to run using the legacy JSONWire protocol (not required in Chrome 78) w3c: true, args: [ - // '--no-sandbox', + '--no-sandbox', // '--ignore-certificate-errors', - // '--allow-insecure-localhost', - // '--headless' + '--allow-insecure-localhost', + '--headless' ], }, }, -- GitLab