UI automated testing framework powered by Node.js. It uses the Selenium WebDriver API.
First thing you need to download the selenium server jar file selenium-server-standalone-2.x.x.jar from here:
(https://code.google.com/p/selenium/downloads/list)
Install Node.js and then:
$ git clone git@github.com:beatfactor/nightwatch.git
$ cd nightwatch
$ npm installThe tests for nightwatch are written using nodeunit as the test framework.
To run the nodeunit tests do:
$ npm test$ ./bin/nightwatch

