There are plenty of test automation tools available for a project. Most give you the ability to combine frameworks together to better suit your needs. Because there are so many different options and combinations of testing tools and libraries, it may be difficult finding something to get started with. To help with that, let’s take a look at one such combination for testing: CodeceptJS and Nightmare – a framework and integrated library that make it simple to create fast, scalable acceptance tests for any project.
Nightmare
Nightmare is a library for browser automation and is used as a web crawler as well as a means for UI testing. It uses Electron under the hood and can be considered as the newer, faster version of PhantomJS. Nightmare can run tests in both headless mode and in a window for debugging and because it doesn’t rely on drivers like Selenium, it’s incredibly fast.
It has a simple API and incorporates the same actions engineers are most familiar with like .goto(url[, headers])
and .check(selector)
. A test written with Nightmare looks like this:
You can also incorporate a more BDD-like structure for your tests by using Mocha and Chai assertions with the Nightmare library.
Nightmare provides a simple library for writing UI tests as it’s fast and well-documented. However, it may not offer some of the same flexibility testers are used to with Selenium as it’s just a library and not a full test framework. Thankfully, there are options to further extend your Nightmare tests.
CodeceptJS
CodeceptJS is a tool for writing acceptance tests. It focuses on test scenarios and the user’s perspective. It supports mobile testing and is built to use many of the popular libraries like Nightmare, WebdriverIO, and Protractor. CodeceptJS adds to Nightmare’s test actions and incorporates readable test scenarios.
Another feature of CodeceptJS is its ability to generate page objects, page fragments, and step objects. This makes it much easier organizing tests without a lot of extra effort.
Setting Things Up
Getting things set up is simple. First run npm install -g codeceptjs-nightmare
to install all of the necessary dependencies. Next, generate the project by running codeceptjs init
. You will be prompted with a few set up questions:
- Where are your tests located? (default location ./*_test.js)
- What helpers do you want to use? (Use space to select)
- Where should logs, screenshots, and reports to be stored?
- Would you like to extend I object with custom steps?
- Do you want to choose localization for tests?
- Where would you like to place custom steps?
- [Nightmare] Base url of site to be tested?
This will generate a codecept.json file. Now you can create your first test with codeceptjs gt
.
You can further organize your tests with page object, step object, and page fragment generators. You can find more information in CodeceptJS’ documentation, but here are the available commands:
- Page Object:
codeceptjs gpo
- Step Object:
codeceptjs go --type step
- Page Fragment:
codeceptjs go --type fragment
CodeceptJS makes it easier for teams to begin creating automated tests because it works with some of the most popular libraries and uses simple, acceptance-based scenarios. This lets you create easy-to-read tests and scale your test suite with your project.
There is a test harness available if you want to quickly spin up CodeceptJS-Nightmare tests for your application. It includes all necessary dependencies, an option to generate an HTML report, and is set up to also run in a Docker container via docker-compose. Check it out at https://github.com/ModusCreateOrg/codeceptjs-nightmare-harness.
Wrapping Up
There are many options to choose from when designing a structure for tests. Why work with Nightmare and CodeceptJS? CodeceptJS makes it simple to create a uniform test suite across popular libraries like WebdriverIO, Appium, and Nightmare. It builds upon what these libraries already offer and allows teams to easily create new test projects. Nightmare gives you the ability to create tests that are fast and efficient – a major plus for any automation roadmap.
If you’re having trouble choosing tools for an automation suite or getting started with automation altogether, consider checking out the repo and start writing your own CodeceptJS + Nightmare tests!
Mallory Mooney
Related Posts
-
End-to-end Tests Using Watir Webdriver
Functional automated testing tools have come a long way since the days of winrunner, quick…
-
Writing E2E Tests with Nightwatch-Cucumber
Nightwatch.js is an awesome, lightweight, Node.js based, End-to-End (E2E) testing framework. Cucumber.js is a JavaScript…