github nightwatchjs/nightwatch v1.1.12

latest releases: v3.6.1, v3.6.0, v3.5.0...
4 years ago
  • Fixed #2123 - the .init() command was broken starting with v1.1.8
  • Fixed #2118 - Set default POST body to be empty JSON in order to use chromedriver 75
    If using Chromedriver 75 you need to set the following capabilities in your config:
desiredCapabilities : {
  browserName : 'chrome',
  chromeOptions: {
    w3c: false
  }
}

Chromedriver 75 has W3C Webdriver protocol enabled by default, however we recommend sticking to the JSONWire for now as some endpoints aren't implemented yet (e.g. /displayed). If using the default w3c webdriver mode, make sure to adjust the config like so:

{
  capabilities: {
    browserName : 'chrome',
  },
  webdriver: {
    use_legacy_jsonwire: false
  }
}

Don't miss a new nightwatch release

NewReleases is sending notifications on new releases.