All Projects → nightwatchjs → Nightwatch

nightwatchjs / Nightwatch

Licence: mit
End-to-end testing framework written in Node.js and using the Webdriver API

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Nightwatch

nightwatch101
使用 Nightwatch 實現 End-to-End Testing ★
Stars: ✭ 42 (-99.62%)
Mutual labels:  webdriver, selenium, end-to-end-testing, nightwatch, automated-testing
Cabbie
WebDriver for the masses
Stars: ✭ 70 (-99.36%)
Mutual labels:  selenium, webdriver, end-to-end-testing
Panther
A browser testing and web crawling library for PHP and Symfony
Stars: ✭ 2,480 (-77.27%)
Mutual labels:  selenium, webdriver, chromedriver
nightwatch-boilerplate
boilerplate for nightwatch.js with selenium
Stars: ✭ 16 (-99.85%)
Mutual labels:  selenium, selenium-server, nightwatch
Seleniumbase
A Python framework that inspires developers to become better test automation engineers. 🧠💡
Stars: ✭ 2,520 (-76.91%)
Mutual labels:  selenium, webdriver, end-to-end-testing
callisto
Callisto is an open-source Kubernetes-native implementation of Selenium Grid.
Stars: ✭ 83 (-99.24%)
Mutual labels:  webdriver, selenium, selenium-server
w3c-webdriver
W3C WebDriver JavaScript Client
Stars: ✭ 28 (-99.74%)
Mutual labels:  webdriver, selenium, end-to-end-testing
Sillynium
Automate the creation of Python Selenium Scripts by drawing coloured boxes on webpage elements
Stars: ✭ 100 (-99.08%)
Mutual labels:  selenium, automated-testing, chromedriver
Undetected Chromedriver
Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imperva/ Datadadome / CloudFlare IUAM)
Stars: ✭ 365 (-96.66%)
Mutual labels:  selenium, webdriver, chromedriver
Atata
C#/.NET test automation framework for web
Stars: ✭ 362 (-96.68%)
Mutual labels:  selenium, webdriver, automated-testing
Docker Selenium
Docker images for the Selenium Grid Server
Stars: ✭ 5,476 (-49.82%)
Mutual labels:  selenium, webdriver, selenium-server
Php Webdriver
PHP client for Selenium/WebDriver protocol. Previously facebook/php-webdriver
Stars: ✭ 4,477 (-58.97%)
Mutual labels:  selenium, webdriver, w3c-webdriver
Selendroid
"Selenium for Android" (Test automate native or hybrid Android apps and the mobile web with Selendroid.) Join us on IRC #selendroid on freenode. Also confirm you have signed the CLA http://goo.gl/pAvxEI when making a Pull Request.
Stars: ✭ 828 (-92.41%)
Mutual labels:  selenium, webdriver, end-to-end-testing
Webdrivermanager
WebDriverManager (Copyright © 2015-2021) is a project created and maintained by Boni Garcia and licensed under the terms of the Apache 2.0 License.
Stars: ✭ 1,808 (-83.43%)
Mutual labels:  selenium, chromedriver
Selenium Ide
Open Source record and playback test automation for the web.
Stars: ✭ 1,815 (-83.37%)
Mutual labels:  selenium, webdriver
Marionette
Selenium alternative for Crystal. Browser manipulation without the Java overhead.
Stars: ✭ 119 (-98.91%)
Mutual labels:  selenium, webdriver
Tib
Easy e2e browser testing in Node
Stars: ✭ 64 (-99.41%)
Mutual labels:  selenium, webdriver
Python web framework
这是一个关于python的WebUI自动化测试的项目,之前用的是unittest测试框架,现在改成pytest测试框架,Python+PageObject+Pytest
Stars: ✭ 49 (-99.55%)
Mutual labels:  selenium, webdriver
Java.appium
Mobile test automation using Appium in Java
Stars: ✭ 59 (-99.46%)
Mutual labels:  selenium, webdriver
Autolink
AutoLink是一个开源Web IDE自动化测试集成解决方案
Stars: ✭ 129 (-98.82%)
Mutual labels:  selenium, webdriver

Nightwatch.js

npm Node.js CI codecov npm package Join the chat at https://gitter.im/nightwatchjs/nightwatch Node Support

Nightwatch.js Schematic Logo

HomepageDeveloper GuideAPI ReferenceAboutBlog


Automated end-to-end testing framework powered by Node.js and using W3C Webdriver (formerly Selenium).

Nightwatch is a complete and integrated solution for end-to-end testing of web applications and websites. It can also be used for Node.js unit and integration testing.

Nightwatch v2.0-beta

What's New | Release Notes | Discussions

We're delighted to announce that Nightwatch v2.0 is now in beta and available in NPM. Read the what's new docs page for an overview of the new featues, improvements, and important changes.

Install with:

npm i nightwatch@next

Up & Running in 2 Minutes:

1. Install Nightwatch from NPM

$ npm install nightwatch --save-dev

2. Install Browser Drivers:

Geckodriver (Firefox):

Geckodriver is the WebDriver service used to drive the Mozilla Firefox Browser.

$ npm install geckodriver --save-dev
Chromedriver:

Chromedriver is the WebDriver service used to drive the Google Chrome Browser.

$ npm install chromedriver --save-dev

or install everything with one line:

$ npm install nightwatch geckodriver chromedriver --save-dev

3. Run a Demo Test:

Nightwatch comes with an examples folder containing several sample tests.

Below will run a basic test which opens the search engine Ecosia.org, searches for the term "nightwatch", and verifies if the term first result is the Nightwatch.js website.

$ npx nightwatch examples/tests/ecosia.js

Manually Download Browser Drivers

Nightwatch uses a WebDriver compatible server to control the browser. WebDriver is a W3C specification and industry standard which provides a platform and HTTP protocol to interact with a browser.

Nightwatch includes support for automatically managing the following services:

ChromeDriver

GeckoDriver

Selenium Standalone Server

It's important to note that, while the Selenium Server was required with older Nightwatch versions (v0.9 and prior), starting with version 1.0 the Selenium Server is no longer necessary.

Specific WebDriver setup guides can be found on the Docs website. Legacy Selenium drivers setup guides along with debugging instructions can be found on the Wiki.

Examples

Examples below are written using Nightwatch 2.0.

Search for the term "Nightwatch.js" using:

Google search using page objects

ToDo App on AngularJs homepage

You can run any of the examples by simply referring to the examples folder like below:

npx nightwatch examples/tests/angularTest.js

CucumberJS examples

The bundled config file which is auto-generated by Nightwatch on the first run (only if one is not already present in the project), contains configuration and examples for running the CucumberJS examples immediately, using the following:

npx nightwatch --env cucumber-js

You can also check out the nightwatch-website-tests repo for example tests against the nightwatchjs.org website.

Nightwatch unit tests

The tests for Nightwatch are written using Mocha.

1. Clone the project

$ git clone https://github.com/nightwatchjs/nightwatch.git
$ cd nightwatch
$ npm install

2. Run tests

To run the complete test suite:

$ npm test

To check test coverage, run the command:

$ npm run mocha-coverage

and then open the generated coverage/index.html file in your browser.

About Nightwatch

Nightwatch was initially built by @pineviewlabs - an independent software consultancy based in Oslo, Norway, with help from contributors. In mid 2021, Nightwatch has become a part of the @BrowserStack family and it is being developed further at the BrowserStack Open-source Program Office. Read more on our blog.

We are thankful for everyone who supported Nightwatch on the OpenCollective platform.

Licence

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].