mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 05:17:05 +08:00
15 lines
263 B
JavaScript
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',
|
|
}
|
|
};
|