https://github.com/wlsf82/protractor-todomvc
This repository was created to share some tests that I did, to demonstrate the basic use of Protractor for end to end testing for AngularJS apps
https://github.com/wlsf82/protractor-todomvc
Last synced: about 1 month ago
JSON representation
This repository was created to share some tests that I did, to demonstrate the basic use of Protractor for end to end testing for AngularJS apps
- Host: GitHub
- URL: https://github.com/wlsf82/protractor-todomvc
- Owner: wlsf82
- Created: 2014-09-18T16:46:53.000Z (about 11 years ago)
- Default Branch: fs/perf
- Last Pushed: 2021-05-08T12:55:10.000Z (over 4 years ago)
- Last Synced: 2025-05-05T22:55:00.289Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
protractor-todomvc
==================⚠️ **This project has been deprecated.** ⚠️
To install protractor and the webdriver-manager, run the following command:
npm install -g protractor
Then update the webdriver-manager with the below command:
webdriver-manager update
And to start the webdriver-manager (needed for the test execution), let a terminal opened and run the following command:
webdriver-manager start
_____________________________________________________________________________________________________
The conf.js file provides the information from where the Selenium Webdriver will be running, and which spec file must be used for the test execution.
It can also provide information about which browser will be used for testing, or even if multi-browser testing is needed.The spec.js file has the tests themselves.
And the *.helper.js files are just helpers to keep the repeated complex logic code separated from the test.
_____________________________________________________________________________________________________
To install the protractor version focused on performance testing, use the below command:
npm install -g protractor-perf
And then to execute the protractor tests focusing on performance metrics, using the following command on the folder where the tests are:
protractor-perf conf.js