Nightwatch v1.1.12 Release Notes

Release Date: 2019-06-10 // almost 5 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 } }

    0️⃣ 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 } }