https://github.com/testxio/testx-quickstart
A sample test project using testx
https://github.com/testxio/testx-quickstart
Last synced: about 1 month ago
JSON representation
A sample test project using testx
- Host: GitHub
- URL: https://github.com/testxio/testx-quickstart
- Owner: testxio
- Created: 2015-04-26T07:48:45.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-06-29T10:00:37.000Z (almost 8 years ago)
- Last Synced: 2025-01-16T10:48:33.025Z (over 1 year ago)
- Language: CoffeeScript
- Size: 117 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[testx](http://testx.io/testx) quickstart
====================
This project is meant to serve as a starting point for keyword driven tests with [testx](http://testx.io/testx).
## Prerequisites
Make sure you have [Node.js](https://nodejs.org) installed on your machine. To run selenium server locally (not really necessary for dev/testing) you'll need java as well.
## Installation
Clone this project.
Install all dependencies. In the project directory do:
npm install
## Run
From within the project directory:
protractor conf.coffee
or
npm test
This run uses Chrome headless mode. If you want to see what is going on, do:
npm run test:display
### Run with [Docker](https://www.docker.com/)
This method is recommended when executing your tests as part of a continuous integration pipeline. When using Docker you do not need protractor installed on your machine (or the CI server), but of course you need Docker.
npm run test:docker
## Next steps
Check the [testx documentation](http://testx.io/testx) documentation to find out where to go from here.