From 3473e2102aab5339e40e7b5067dcae178f777d3a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 4 Mar 2021 10:53:38 +0100 Subject: [PATCH] Update protractor confg --- client/e2e/local-protractor.conf.js | 34 ++++++++++++++++++++++------- client/e2e/protractor.conf.js | 2 +- 2 files changed, 27 insertions(+), 9 deletions(-) diff --git a/client/e2e/local-protractor.conf.js b/client/e2e/local-protractor.conf.js index 16f039025..6120dab8c 100644 --- a/client/e2e/local-protractor.conf.js +++ b/client/e2e/local-protractor.conf.js @@ -9,16 +9,34 @@ exports.config = { directConnect: true, - capabilities: { - 'browserName': 'firefox', - 'moz:firefoxOptions': { - binary: '/usr/bin/firefox-developer-edition', - // args: ["-headless"], - log: { - "level": "info" // default is "info" + multiCapabilities: [ + { + 'browserName': 'firefox', + 'name': 'Firefox', + 'moz:firefoxOptions': { + binary: '/usr/bin/firefox-developer-edition', + // args: ["-headless"], + log: { + "level": "info" // default is "info" + } } + }, + { + 'browserName': 'firefox', + 'name': 'Firefox ESR', + 'moz:firefoxOptions': { + binary: '/usr/bin/firefox-esr', + // args: ["-headless"], + log: { + "level": "info" // default is "info" + } + } + }, + { + 'browserName': 'chrome', + 'name': 'Chromium' } - }, + ], // maxSessions: 1, baseUrl: 'http://localhost:3000/', diff --git a/client/e2e/protractor.conf.js b/client/e2e/protractor.conf.js index 2b26d2c40..e5a23e16a 100644 --- a/client/e2e/protractor.conf.js +++ b/client/e2e/protractor.conf.js @@ -34,7 +34,7 @@ exports.config = { }, { browserName: 'Firefox', - version: '60', // ESR, + version: '68', // ESR name: 'Firefox ESR Desktop', resolution: '1280x1024' }, -- 2.41.0