Reputation: 1717
I am trying to start protractor on my local Windows development machine. In an attempt to do so, I am trying to start it from the command-line using the following command:
C:\myProject\node_modules\grunt-protractor-runner\node_modules\protractor\bin>webdriver-manager start
When that command is run, I get an error that says:
'webdriver-manager' is not recognized as an internal or external command,
operable program or batch file.
I was confident this was correct though. I'm installing protractor via NPM. My package.json file looks like this:
{
"name": "MyProject",
"version": "0.0.1",
"description": "Just the description",
"repository": "N/A",
"readme":"N/A",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"devDependencies": {
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-concat": "0.4.0",
"grunt-contrib-connect": "0.7.1",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-cssmin": "~0.6.1",
"grunt-contrib-htmlmin": "~0.1.3",
"grunt-contrib-jshint": "0.9.2",
"grunt-contrib-uglify": "~0.2.4",
"grunt-contrib-watch": "0.5.x",
"grunt-protractor-runner": "0.2.4",
"grunt-start-webdriver":"0.0.2",
"phantomjs": "1.9.7-3",
"selenium-webdriver":"2.41.0",
"load-grunt-tasks": "0.2.x",
},
"license": "none"
}
What am I doing wrong? Why can't I get protractor to run? Thank you!
Upvotes: 18
Views: 52535
Reputation: 990
If you are a Windows user, this could help you:
Add C:\Users\%username%\AppData\Roaming\npm
to the PATH
variable.
Close cmd/powershell and open it again.
Try webdriver-manager
Upvotes: 5
Reputation: 5039
Deprecated version of node - it was problem on my pc.
Just updated it downloading last version from https://nodejs.org/en/ and all works.
Upvotes: 0
Reputation: 1050
use grunt-protractor-webdriver, you also need protractor
in your package.json if you don`t installed it as global (-g
)
add this to your package.json
under "devDependencies":
"protractor": "^2.1.0",
"grunt-protractor-webdriver": "^0.2.0",
also look at grunt-protractor-runner it can start protractor from a grunt process without starting the selenium server ( webdriver-manager start
)
to start the selenium server with grunt-protractor-webdriver
add this to your Gruntfile
protractor_webdriver: {
options: {
keepAlive: true
}
}
and add it to a grunt-task
grunt.registerTask('start-selenium-server', ['protractor_webdriver']);
Upvotes: 2
Reputation: 449
Install protractor globally.
npm install protractor -g
This will install protractor
and webdriver-manager
.
Then run from the command line: webdriver-manager update
Check for more info on: http://angular.github.io/protractor/#/tutorial
Upvotes: 36
Reputation: 483
Try installing it globally as an Administrator:
npm install -g webdriver-manager
Upvotes: 15
Reputation: 692211
webdriver-manager is actually a NodeJS script. Run it using
node webdriver-manager start
Upvotes: 33