Skip to content Skip to sidebar Skip to footer

Removing Browser.ignoresynchronization = True Causes "angular Could Not Be Found On The Window"

I need to remove browser.ignoreSynchronization from my protractor files. However, doing so causes an 'angular could not be found on the window' error. Does anyone have any experien

Solution 1:

This is expected. It means the app you're testing isn't an Angular app. I.e. does not include Angular code.

ignoreSynchronization is used when testing non-Angular apps.

Post a Comment for "Removing Browser.ignoresynchronization = True Causes "angular Could Not Be Found On The Window""