Well this is the error I get when I run protractor:
Failed: Angular could not be found on the page http://localhost:8080/ . If this is not an Angular application, you may need to turn off waiting for Angular.
The only thing I've done is change node versions to 7 , and install protractor and phantomjs , and when I run the protractor tests/tests.js command I get that error.
tests.js:
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
chromeOnly: true,
specs: ["e2e/TC01-loadFilm.js"]
};
AngularJS and Bootstrap is installed in a /public folder, both my /public and /tests folders are in the root of the project, I don't know if that will be the problem.