I am testing AngularJS application and very new for protractor. Each time I open the browser, it opens and then waits for a timeout before throwing the following error on cmd.
Timed out waiting for Protractor to synchronize with the page after 50001ms
I tried to increase the timeout limit, but always get this error. I also tried using all of this:
browser.ignoreSynchronization = true; browser.driver.sleep(5000); browser.debugger(); browser.waitForAngular();
The page loads correctly, and if I use Eclipse and Selenium to interact with button objects, this just works fine.
Only the protractor has problems with synchronization. Please, help.
source share