bigbluebutton-Github/bigbluebutton-tests/playwright/whiteboard/eraser.js

44 lines
1.7 KiB
JavaScript

const { expect } = require('@playwright/test');
const e = require('../core/elements');
const { ELEMENT_WAIT_LONGER_TIME } = require('../core/constants');
const { MultiUsers } = require('../user/multiusers');
class Eraser extends MultiUsers {
constructor(browser, context) {
super(browser, context);
}
async test() {
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
const modWbLocator = this.modPage.getLocator(e.whiteboard);
const wbBox = await modWbLocator.boundingBox();
const screenshotOptions = {
maxDiffPixels: 1000,
};
await this.modPage.waitAndClick(e.wbShapesButton);
await this.modPage.waitAndClick(e.wbLineShape);
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.wbEraser);
await this.modPage.page.mouse.move(wbBox.x + 0.3 * wbBox.width, wbBox.y + 0.7 * wbBox.height);
await this.modPage.page.mouse.down();
await this.modPage.page.mouse.move(wbBox.x + 0.7 * wbBox.width, wbBox.y + 0.3 * wbBox.height);
const userWbLocator = this.userPage.getLocator(e.whiteboard);
await expect(modWbLocator).toHaveScreenshot('moderator-eraser1.png', screenshotOptions);
await expect(userWbLocator).toHaveScreenshot('viewer-eraser1.png', screenshotOptions);
await this.modPage.page.mouse.up();
await expect(modWbLocator).toHaveScreenshot('moderator-eraser2.png', screenshotOptions);
await expect(userWbLocator).toHaveScreenshot('viewer-eraser2.png', screenshotOptions);
}
}
exports.Eraser = Eraser;