Fixed test for first time flow load
This commit is contained in:
parent
ff70f77108
commit
007a0c7a41
1 changed files with 3 additions and 3 deletions
|
@ -2,8 +2,8 @@ module.exports = {
|
||||||
'Welcome page loads' : function (browser) {
|
'Welcome page loads' : function (browser) {
|
||||||
browser
|
browser
|
||||||
.url('http://localhost:5050')
|
.url('http://localhost:5050')
|
||||||
.waitForElementVisible('body', 1000)
|
.waitForElementVisible('#initial-setup-page', 1000);
|
||||||
.assert.containsText('body', 'Welcome to Polaris')
|
browser.expect.element("#initial-setup-page h2").text.to.contain("Welcome to Polaris");
|
||||||
.end();
|
browser.end();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue