Skip to content
Snippets Groups Projects
Commit 93b465c3 authored by Antoine Snyers's avatar Antoine Snyers
Browse files

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

parent dfa846a9
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,8 @@ import { browser, element, by } from 'protractor';
export class ProtractorPage {
navigateTo() {
return browser.get('/');
return browser.get('/')
.then(() => browser.waitForAngular());
}
getPageTitleText() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment