Selenium: pass -no-sandbox to Chrome under Docker
[lhc/web/wiklou.git] / tests / selenium / wdio.conf.js
index 7b74328..0b374c8 100644 (file)
@@ -1,6 +1,7 @@
 'use strict';
 
 const password = 'vagrant',
+       fs = require( 'fs' ),
        path = require( 'path' ),
        username = 'Admin';
 
@@ -83,7 +84,12 @@ exports.config = {
                chromeOptions: {
                        // Run headless when there is no DISPLAY
                        // --headless: since Chrome 59 https://chromium.googlesource.com/chromium/src/+/59.0.3030.0/headless/README.md
-                       args: process.env.DISPLAY ? [] : [ '--headless' ]
+                       args: (
+                               process.env.DISPLAY ? [] : [ '--headless' ]
+                       ).concat(
+                               // Disable Chrome sandbox when running in Docker
+                               fs.existsSync( '/.dockerenv' ) ? [ '--no-sandbox' ] : []
+                       )
                }
        } ],
        //