Designed to work with Chimp. Krewcumber is a library that makes use of WebdriverIO and Cucumber to make writing user acceptance tests easier.
This library adds steps that are useful for testing web applications.
Please make sure to install Chimp either globally or locally depending on your project's needs:
npm install --save-dev krewcumber chimp
After installing, make sure to register step definitions by adding a
features/step_definitions/steps.js
file to your project.
var Krewcumber = require('krewcumber');
module.exports = function () {
Krewcumber.init(this);
}