Skip to content

Commit

Permalink
Update protractor confg
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocobozzz committed Mar 4, 2021
1 parent 919b16b commit 3473e21
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
34 changes: 26 additions & 8 deletions client/e2e/local-protractor.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/',
Expand Down
2 changes: 1 addition & 1 deletion client/e2e/protractor.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ exports.config = {
},
{
browserName: 'Firefox',
version: '60', // ESR,
version: '68', // ESR
name: 'Firefox ESR Desktop',
resolution: '1280x1024'
},
Expand Down

0 comments on commit 3473e21

Please sign in to comment.