I'm doing e2e tests for Angular application. For login procedure it should go out of the app, so I'm doing:
browser.waitForAngularEnabled(false);
//login
browser.waitForAngularEnabled(true);
It perfectly works locally, but on browserstack (remote execution) it throughs and error:
Failed: protractor_1.browser.waitForAngularEnabled is not a function
Is it known issue?
related question - How does waitForAngularEnabled work?
Update: created an issue on protractor github - https://github.com/angular/protractor/issues/4453