webrtc / KITE

KITE is a test engine designed to test WebRTC interoperability across browsers
Apache License 2.0
469 stars 126 forks source link

Passing an argument to chrome #81

Closed MrVictorBro closed 4 years ago

MrVictorBro commented 5 years ago

I try to start a chrome node on the remote Linux server. in order to run chrome on Linux server, chrome needs to pass the argument --no-sandbox. how can this argument be passed?

emmanuelandre commented 5 years ago

Hi Victor,

You can add pass chrome arguments as 'flags' by adding the array to the "client" in the config:

"clients": [
    {
      "browserName": "chrome",
      "platform": "localhost",
      "flags": ["--no-sandbox" ]
    }
  ]