37 lines
1.2 KiB
JavaScript
37 lines
1.2 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 DrawText 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.wbTextShape);
|
|
|
|
await this.modPage.page.mouse.click(wbBox.x + 0.3 * wbBox.width, wbBox.y + 0.3 * wbBox.height);
|
|
|
|
await this.modPage.press('A');
|
|
await this.modPage.press('A');
|
|
await this.modPage.press('Backspace');
|
|
await this.modPage.press('B');
|
|
await this.modPage.page.mouse.click(wbBox.x + 0.6 * wbBox.width, wbBox.y + 0.6 * wbBox.height);
|
|
|
|
await expect(modWbLocator).toHaveScreenshot('moderator-text.png', screenshotOptions);
|
|
const userWbLocator = this.userPage.getLocator(e.whiteboard);
|
|
await expect(userWbLocator).toHaveScreenshot('viewer-text.png', screenshotOptions);
|
|
}
|
|
}
|
|
|
|
exports.DrawText = DrawText;
|