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) {
|
||||
browser
|
||||
.url('http://localhost:5050')
|
||||
.waitForElementVisible('body', 1000)
|
||||
.assert.containsText('body', 'Welcome to Polaris')
|
||||
.end();
|
||||
.waitForElementVisible('#initial-setup-page', 1000);
|
||||
browser.expect.element("#initial-setup-page h2").text.to.contain("Welcome to Polaris");
|
||||
browser.end();
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue