Use waitForAngular() so e2e tests don't run while data is still loading

This commit is contained in:
Antoine Snyers
2019-10-24 11:48:08 +02:00
parent dfa846a98e
commit 93b465c3b2

View File

@@ -2,7 +2,8 @@ import { browser, element, by } from 'protractor';
export class ProtractorPage {
navigateTo() {
return browser.get('/');
return browser.get('/')
.then(() => browser.waitForAngular());
}
getPageTitleText() {