InterviewSolution
| 1. |
What Does Ignore Synchronization Do? |
|
Answer» In Protractor, while running tests, this is a common problem, when the Protractor EXECUTION STARTS, but the Angular code is still trying to SYNCHRONISE the $http or $timeout requests. Setting the browser.ignoreSynchronization to true means that we’re telling Protractor to not WAIT for the Angular PROMISES to be resolved. In Protractor, while running tests, this is a common problem, when the Protractor execution starts, but the Angular code is still trying to synchronise the $http or $timeout requests. Setting the browser.ignoreSynchronization to true means that we’re telling Protractor to not wait for the Angular promises to be resolved. |
|