Hi protractor experts,
I'm a new user for protractor. I try to use protractor to do the E2E automation testing for our application (AngularJS application), seems protractor don't think our application is AngularJS application:
Message:
Error: Angular could not be found on the page https://localhost/ : retries looking for angular exceeded Stacktrace:
Error: Angular could not be found on the page https://localhost/ : retries looking for angular exceeded
at Array.forEach (native)
at runMicrotasksCallback (node.js:337:7)
at process._tickCallback (node.js:355:11) From: Task: Asynchronous test function: beforeEach() Error
at [object Object].<anonymous> (/Users/tfeng/Desktop/protractor/addUser.js:6:5)
at Object.<anonymous> (/Users/tfeng/Desktop/protractor/addUser.js:2:1)
Our application does not contains tag in head, we packaged AngularJS in our application. So I'd like to know how protractor check the application is AngularJS or non-AngularJS?
Thanks, Tony