Files
talk/test/e2e/page_objects/adminCommunity.js
T
Belen Curcio a6a903c459 e2e tests
2017-10-30 07:52:08 -03:00

15 lines
263 B
JavaScript

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