bigbluebutton-Github/bigbluebutton-tests/puppeteer/whiteboard/draw.js

47 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-11-23 20:55:16 +08:00
const Page = require('../core/page');
const e = require('../core/elements');
class Draw extends Page {
constructor() {
super('whiteboard-draw');
}
async test() {
try {
await this.waitForSelector(e.whiteboard);
await this.waitAndClick(e.tools);
await this.waitAndClick(e.rectangle);
2021-09-22 21:24:38 +08:00
const shapes1 = await this.getTestElements();
const test1 = shapes1 === '<g></g>';
const wb = await this.page.$(e.whiteboard);
const wbBox = await wb.boundingBox();
await this.page.mouse.move(wbBox.x + 0.3 * wbBox.width, wbBox.y + 0.3 * wbBox.height);
await this.page.mouse.down();
await this.page.mouse.move(wbBox.x + 0.7 * wbBox.width, wbBox.y + 0.7 * wbBox.height);
await this.page.mouse.up();
await this.waitForSelector(e.drawnRectangle);
2021-09-22 21:24:38 +08:00
const shapes2 = await this.getTestElements();
const test2 = shapes2 !== '<g></g>';
2021-09-22 21:24:38 +08:00
return test1 && test2;
2021-08-26 22:13:18 +08:00
} catch (err) {
await this.logger(err);
return false;
}
}
async getTestElements() {
try {
await this.waitForSelector(e.whiteboardViewBox);
2021-09-22 21:24:38 +08:00
return this.page.evaluate((selector) => document.querySelector(selector).children[1].outerHTML, e.whiteboardViewBox);
2021-08-26 22:13:18 +08:00
} catch (err) {
await this.logger(err);
}
}
}
module.exports = exports = Draw;