Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tyrw/testdriver
A simple webdriver to visit pages, pause, and test for proper visuals. Technology agnostic, just follow steps in README.
https://github.com/tyrw/testdriver
Last synced: 7 days ago
JSON representation
A simple webdriver to visit pages, pause, and test for proper visuals. Technology agnostic, just follow steps in README.
- Host: GitHub
- URL: https://github.com/tyrw/testdriver
- Owner: tyrw
- Created: 2015-07-20T05:38:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-20T05:39:58.000Z (over 9 years ago)
- Last Synced: 2023-03-24T08:46:14.056Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
0. Install node if you don't already have it: https://nodejs.org/download/
1. Clone this project into a local repo
2. Install node modules to that repo
- `sudo npm install --save-dev`3. Install protractor & webdriver same per https://angular.github.io/protractor/#/
- `npm install -g protractor`
- `webdriver-manager update`4. edit /e2e files (e2e/sequence.coffee, or add your own)
5. Start webdriver and let it run in a separate terminal tab (check it's running by visiting http://localhost:4444/wd/hub)
- `webdriver-manager start`6. Start the test driver
- `gulp testdrive`