9 lines
234 B
JavaScript
9 lines
234 B
JavaScript
module.exports = {
|
|
'Welcome page loads' : function (browser) {
|
|
browser
|
|
.url('http://localhost:5050')
|
|
.waitForElementVisible('body', 1000)
|
|
.assert.containsText('body', 'Welcome to Polaris')
|
|
.end();
|
|
}
|
|
};
|