Skip to content

Commit

Permalink
Merge branch 'v2' of github.com:nightwatchjs/nightwatch into v2
Browse files Browse the repository at this point in the history
  • Loading branch information
beatfactor committed Nov 4, 2021
2 parents 13d4b45 + cce4216 commit 6d4d830
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions lib/runner/cli/nightwatch.conf.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ module.exports = {
'goog:chromeOptions' : {
// More info on Chromedriver: https://sites.google.com/a/chromium.org/chromedriver/
//
// This tells Chromedriver to run using the legacy JSONWire protocol (not required in Chrome 78)
w3c: false,
// w3c:false tells Chromedriver to run using the legacy JSONWire protocol (not required in Chrome 78)
w3c: true,
args: [
//'--no-sandbox',
//'--ignore-certificate-errors',
Expand All @@ -117,7 +117,7 @@ module.exports = {
desiredCapabilities : {
browserName : 'MicrosoftEdge',
'ms:edgeOptions' : {
w3c: false,
w3c: true,
// More info on EdgeDriver: https://docs.microsoft.com/en-us/microsoft-edge/webdriver-chromium/capabilities-edge-options
args: [
//'--headless'
Expand Down Expand Up @@ -208,7 +208,7 @@ module.exports = {
desiredCapabilities: {
browserName: 'chrome',
chromeOptions : {
w3c: false
w3c: true
}
}
},
Expand Down Expand Up @@ -270,7 +270,7 @@ module.exports = {
desiredCapabilities: {
browserName: 'chrome',
chromeOptions : {
w3c: false
w3c: true
}
}
},
Expand Down
4 changes: 2 additions & 2 deletions test/src/cli/testCliRunnerGenerate.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe('Test CLI Runner Generate', function() {
browserName: 'chrome',
'goog:chromeOptions': {
args: [],
w3c: false
w3c: true
}
},

Expand Down Expand Up @@ -154,7 +154,7 @@ describe('Test CLI Runner Generate', function() {
desiredCapabilities: {
browserName: 'chrome',
chromeOptions: {
w3c: false
w3c: true
}
}
});
Expand Down

0 comments on commit 6d4d830

Please sign in to comment.