At first I have to say this is my first touch with angularjs and node.js so this will be probably a stupid issue, but I want to learn to work with angularjs so I followed this tutorial https://docs.angularjs.org/tutorial and everything went as expected, until I got to Running End to End Tests part.
When I run this command:
npm run update-webdriver
it says:
selenium standalone is up to date.
chromedriver is up to date.
Then I turn on the local server:
npm start
And while its running I run tests:
npm run protractor
which in my terminal results into: o
Using ChromeDriver directly...
[launcher] Error: Could not find chromedriver at /home/qw/www/angular-phonecat/node_modules/protractor/selenium/chromedriver.exe
Th file chromedriver.exe really doesnt exists (there is chromedriver_2.10.zip), and I really dont think an .exe file should be there, considering Im using ubuntu 14.04 (this tutorial shoul be for angular version is 1.4.0).
Is this a tuto for some windows version?
Could anyone help me (the way a beginner could understand :) )?