Reputation: 11
I am new on protractor platform and I tried to install and run the protractor locally on window, but I had no luck yet. Can anybody please tell me the exact step? I am able to install and run it globally.
Upvotes: 0
Views: 534
Reputation: 13712
For you
npm init
to generate package.json
npm install -S protractor
to install protractor locally and add it into project's dependencies. (you can check protractor
will appear in package.json)For others who want to run you code locally,
npm install
to install dependencies to localUpvotes: 1