Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gitaaron/soda-cucumber
https://github.com/gitaaron/soda-cucumber
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gitaaron/soda-cucumber
- Owner: gitaaron
- License: mit
- Created: 2013-12-06T20:00:43.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-10T22:24:18.000Z (about 11 years ago)
- Last Synced: 2024-04-14T15:04:45.281Z (9 months ago)
- Language: JavaScript
- Size: 219 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# soda-cucumber
Sode is a Selenium Node Adapter. It is a client for NodeJS for acceptane testing.
Cucumber is a behaviour driven development tool.
We can use Soda and Cucumber.js together to create cucumber acceptance tests for web testing in Java Script.## Prerequesites
- Node.js
- NPM## Usage
### Install
To use CucumberJS and Soda together you need to install Soda, Selenium-launcher and Cucumber.js
Dependences can be installed with:
``` shell
$ npm install
```OR
with:
``` shell
$ npm install cucumber
$ npm install soda
$ npm install selenium-launcher
```### Run
1. Go into the simple-server folder and run the simple-server
``` shell
$ cd simple-server
$ serve
```2. Run the Cucumber test with the following command
``` shell
$ cucumber.js features -r features/step_definitions
```