49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
const { ELEMENT_WAIT_TIME } = require('../core/constants');
|
|
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);
|
|
|
|
const shapes0 = await this.getTestElements();
|
|
shapes0 === '<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);
|
|
const shapes1 = await this.getTestElements();
|
|
shapes1 !== '<g></g>';
|
|
|
|
return shapes0 && shapes1;
|
|
} catch (err) {
|
|
await this.logger(err);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
async getTestElements() {
|
|
try {
|
|
await this.waitForSelector(e.whiteboardViewBox);
|
|
const shapes = await this.page.evaluate((selector) => document.querySelector(selector).children[1].outerHTML, e.whiteboardViewBox);
|
|
return shapes;
|
|
} catch (err) {
|
|
await this.logger(err);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = exports = Draw;
|