From b3338463db647b53d2281cb9166d6bb7efbcf717 Mon Sep 17 00:00:00 2001 From: David Dorchies <david.dorchies@inrae.fr> Date: Thu, 11 Jan 2024 14:42:07 +0000 Subject: [PATCH] fix(e2e): Use wdio browser autoconfiguration instead of manual install Refs #648 --- wdio.conf.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wdio.conf.ts b/wdio.conf.ts index 654fa4a6d..995786a63 100644 --- a/wdio.conf.ts +++ b/wdio.conf.ts @@ -135,15 +135,15 @@ export const config: Options.Testrunner = { // your test setup with almost no effort. Unlike plugins, they don't add new // commands. Instead, they hook themselves up into the test process. // args: ["--verbose", "--whitelisted-ips="] - services: [ - ['chromedriver', - { - chromedriverCustomPath: "/usr/bin/chromedriver", - args: ["--verbose", "--whitelisted-ips=127.0.0.1"] - } - ] - ], - + // services: [ + // ['chromedriver', + // { + // chromedriverCustomPath: "/usr/bin/chromedriver", + // args: ["--verbose", "--whitelisted-ips=127.0.0.1"] + // } + // ] + // ], + // // Framework you want to run your specs with. // The following are supported: Mocha, Jasmine, and Cucumber // see also: https://webdriver.io/docs/frameworks -- GitLab