From 7d4b4f7e2ea318529a16fd734a45ae4908af94de Mon Sep 17 00:00:00 2001 From: rahuljain-dev Date: Tue, 19 Nov 2024 12:15:48 +0530 Subject: [PATCH] chrome version in browser --- packages/nuxeo-web-ui-ftest/wdio.conf.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/nuxeo-web-ui-ftest/wdio.conf.js b/packages/nuxeo-web-ui-ftest/wdio.conf.js index bb50e5ed11..b8af1212ac 100644 --- a/packages/nuxeo-web-ui-ftest/wdio.conf.js +++ b/packages/nuxeo-web-ui-ftest/wdio.conf.js @@ -25,7 +25,7 @@ const capability = { // grid with only 5 firefox instance available you can make sure that not more than // 5 instance gets started at a time. maxInstances: 1, - browserName: process.env.BROWSER, + browserName: 'Chrome', acceptInsecureCerts: true, browserVersion: 'stable', }; @@ -101,6 +101,7 @@ exports.config = { // WebdriverIO allows it to run your tests in arbitrary locations (e.g. locally or // on a remote machine). runner: 'local', + // specs: ['../../ftest/features/**'], specs: [path.join(process.cwd(), './features/*.feature')], // check http://webdriver.io/guide/testrunner/debugging.html for more info on debugging with wdio debug: process.env.DEBUG,