Files
talk/test/e2e/page_objects/adminPage.js
T
2017-10-13 21:07:39 -03:00

15 lines
258 B
JavaScript

module.exports = {
commands: [{
url: function() {
return `${this.api.launchUrl}/admin`;
},
ready() {
return this
.waitForElementVisible('body', 2000);
},
}],
elements: {
'loginLayout': '.talk-admin-login'
}
};