Skip to content

How to: End to End Testing Using Protractor

Srishti Hunjan edited this page Nov 27, 2017 · 2 revisions

Documentation from : http://www.protractortest.org/#/

Steps:

  1. Install it globally -
npm install -g protractor
  1. The webdriver-manager is a helper tool to easily get an instance of a Selenium Server running. Use it to download the necessary binaries with
webdriver-manager update
  1. To run server:
webdriver-manager start
  1. To run a test:
protractor conf.js

Clone this wiki locally