angularjs - how to navigate to page without angular in protractor? -
this question has answer here:
how can go page not contain angular protractor? test looks this:
browser.driver.get('https://www.mysitewithlogin.com');
the result is:
message:error while waiting protractor sync page: "angular not found on window"
so site starts login page , not contain angular. uberhaupt possible?
use below line of code before launching application.
browser.ignoresynchronization=true;
by writing above line, wont wait angular. considers app normal app.
Comments
Post a Comment