Top "Nightwatch.js" questions

Nightwatch.

How to run a single test in nightwatch

How do I run only Test 3 from the following tests? module.exports = { 'Test 1':function(){}, 'Test 2':function(){} 'Test 3':…

functional-testing nightwatch.js
What is the difference between NightwatchJS and WebdriverIO?

As the title states, what is the difference between Nightwatch.js and Webdriver.io? It seems like they have kind …

nightwatch.js webdriver-io wdio-v4 wdio-v5
Chromedriver error "Chrome version must be >= 52" using Nightwatch

I'm trying to setup Nightwatch, and am using the latest chromedriver which says it supports chrome v52-54. BUT, when …

selenium selenium-webdriver selenium-chromedriver nightwatch.js
How to send keypress in nightwatch

I know how to send click events with nightwatch: browser.click('#my-control'); But I have been unable to find …

selenium testing keypress acceptance-testing nightwatch.js
Nightwatchjs: how to check if element exists without creating an error/failure/exception

In the page I'm testing, two buttons may be displayed: BASIC or ADVANCED. I want to be able to tell …

selenium automated-tests nightwatch.js
Nightwatch to select option from select box

I am trying to use nightwatch.js to select an option from a select box. I have the code: this.…

javascript jquery nightwatch.js
Nightwatch: Better way than `.pause(1000)` to avoid brittle tests?

Is .pause(1000) really the best-practice there is to wait for form submission? I'm looking for a way to reliably submit …

javascript nightwatch.js
Correct way to get a count of matching elements in Nightwatch?

I'm trying to test if a todo app has the right number of elements. The docs seem to deal almost …

nightwatch.js
How to scroll to element using Nightwatch?

I am using nightwatch for e2etesting my app. One of the tests fails because it cannot scroll to the …

javascript selenium-webdriver nightwatch.js
Nightwatch can't locate element via css id or class selectors

We're using Nightwatch to automate some of our UI testing. Some of the current tests are rather brittle, mostly having …

javascript css-selectors nightwatch.js