2018-11-23 20:55:16 +08:00
|
|
|
const Page = require('../core/page');
|
2021-09-22 11:51:29 +08:00
|
|
|
const e = require('../core/elements');
|
2018-11-22 04:58:45 +08:00
|
|
|
const util = require('./util');
|
2021-08-21 04:33:57 +08:00
|
|
|
const { checkElementLengthEqualTo } = require('../core/util');
|
2018-11-22 04:58:45 +08:00
|
|
|
|
|
|
|
class Clear extends Page {
|
2018-11-23 03:15:52 +08:00
|
|
|
constructor() {
|
2021-09-23 03:22:47 +08:00
|
|
|
super();
|
2018-11-23 03:15:52 +08:00
|
|
|
}
|
|
|
|
|
2020-08-14 10:41:14 +08:00
|
|
|
async test(testName) {
|
2021-02-26 23:52:17 +08:00
|
|
|
try {
|
|
|
|
await util.openChat(this);
|
2021-08-14 04:33:27 +08:00
|
|
|
await this.screenshot(`${testName}`, `01-before-chat-message-send-[${this.meetingId}]`);
|
|
|
|
|
2021-02-26 23:52:17 +08:00
|
|
|
// sending a message
|
|
|
|
await this.type(e.chatBox, e.message);
|
2021-09-22 21:11:56 +08:00
|
|
|
await this.waitAndClick(e.sendButton);
|
2021-02-26 23:52:17 +08:00
|
|
|
|
2021-08-14 04:33:27 +08:00
|
|
|
await this.screenshot(`${testName}`, `02-after-chat-message-send-[${this.meetingId}]`);
|
|
|
|
|
2021-02-26 23:52:17 +08:00
|
|
|
|
2021-08-21 04:33:57 +08:00
|
|
|
const chat0 = await this.page.evaluate(checkElementLengthEqualTo, e.chatClearMessageText, 0);
|
2021-02-26 23:52:17 +08:00
|
|
|
|
|
|
|
// clear
|
2021-09-22 21:11:56 +08:00
|
|
|
await this.waitAndClick(e.chatOptions);
|
2021-08-14 04:33:27 +08:00
|
|
|
await this.screenshot(`${testName}`, `03-chat-options-clicked-[${this.meetingId}]`);
|
|
|
|
|
2021-09-22 21:11:56 +08:00
|
|
|
await this.waitAndClick(e.chatClear);
|
2021-02-26 23:52:17 +08:00
|
|
|
|
2021-08-14 04:33:27 +08:00
|
|
|
await this.screenshot(`${testName}`, `04-chat-cleared-[${this.meetingId}]`);
|
|
|
|
|
2021-09-22 21:11:56 +08:00
|
|
|
const chatResp = await this.waitForSelector(e.chatClearMessageText).then(() => true);
|
2021-02-26 23:52:17 +08:00
|
|
|
|
|
|
|
return chat0 && chatResp;
|
2021-08-26 22:13:18 +08:00
|
|
|
} catch (err) {
|
|
|
|
await this.logger(err);
|
2021-02-26 23:52:17 +08:00
|
|
|
return false;
|
2020-08-14 10:41:14 +08:00
|
|
|
}
|
2018-11-22 04:58:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-30 20:36:08 +08:00
|
|
|
module.exports = exports = Clear;
|