2023-04-12 21:29:25 +08:00
|
|
|
const { expect } = require('@playwright/test');
|
|
|
|
const e = require('../core/elements');
|
|
|
|
const { ELEMENT_WAIT_LONGER_TIME } = require('../core/constants');
|
|
|
|
const { MultiUsers } = require('../user/multiusers');
|
|
|
|
|
|
|
|
class RedoDrawing extends MultiUsers {
|
|
|
|
constructor(browser, page) {
|
|
|
|
super(browser, page);
|
|
|
|
}
|
|
|
|
|
|
|
|
async test() {
|
|
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
|
2023-04-18 21:36:09 +08:00
|
|
|
const modWbLocator = this.modPage.getLocator(e.whiteboard);
|
|
|
|
const wbBox = await modWbLocator.boundingBox();
|
2023-04-12 21:29:25 +08:00
|
|
|
|
|
|
|
await this.modPage.waitAndClick(e.wbArrowShape);
|
|
|
|
|
|
|
|
await this.modPage.page.mouse.move(wbBox.x + 0.3 * wbBox.width, wbBox.y + 0.3 * wbBox.height);
|
|
|
|
await this.modPage.page.mouse.down();
|
|
|
|
await this.modPage.page.mouse.move(wbBox.x + 0.7 * wbBox.width, wbBox.y + 0.7 * wbBox.height);
|
|
|
|
await this.modPage.page.mouse.up();
|
|
|
|
|
|
|
|
await this.modPage.waitAndClick(e.wbUndo);
|
|
|
|
await this.modPage.waitAndClick(e.wbRedo);
|
|
|
|
|
2024-03-12 19:35:41 +08:00
|
|
|
await this.modPage.setHeightWidthViewPortSize();
|
|
|
|
await this.userPage.setHeightWidthViewPortSize();
|
2024-03-02 02:15:18 +08:00
|
|
|
|
2023-06-08 10:17:42 +08:00
|
|
|
await expect(modWbLocator).toHaveScreenshot('moderator-redo-drawing.png');
|
2023-04-12 21:29:25 +08:00
|
|
|
|
2023-04-18 21:36:09 +08:00
|
|
|
const userWbLocator = this.userPage.getLocator(e.whiteboard);
|
2023-06-08 10:17:42 +08:00
|
|
|
await expect(userWbLocator).toHaveScreenshot('viewer-redo-drawing.png');
|
2023-04-12 21:29:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.RedoDrawing = RedoDrawing;
|