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 RealTimeText extends MultiUsers {
|
|
|
|
constructor(browser, context) {
|
|
|
|
super(browser, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
async realTimeTextTyping() {
|
|
|
|
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
|
|
|
const screenshotOptions = {
|
|
|
|
maxDiffPixelRatio: 0.05,
|
|
|
|
};
|
|
|
|
|
|
|
|
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');
|
|
|
|
|
2023-04-18 21:36:09 +08:00
|
|
|
const userWbLocator = this.userPage.getLocator(e.whiteboard);
|
|
|
|
await expect(modWbLocator).toHaveScreenshot('moderator-realtime-text.png', screenshotOptions);
|
|
|
|
await expect(userWbLocator).toHaveScreenshot('viewer-realtime-text.png', screenshotOptions);
|
2023-04-12 21:29:25 +08:00
|
|
|
|
|
|
|
await this.modPage.press('A');
|
|
|
|
await this.modPage.page.mouse.click(wbBox.x + 0.6 * wbBox.width, wbBox.y + 0.6 * wbBox.height);
|
|
|
|
|
2023-04-18 21:36:09 +08:00
|
|
|
await expect(modWbLocator).toHaveScreenshot('moderator-realtime-text-2.png', screenshotOptions);
|
|
|
|
await expect(userWbLocator).toHaveScreenshot('viewer-realtime-text-2.png', screenshotOptions);
|
|
|
|
await expect(modWbLocator).toHaveText('AA');
|
2023-04-12 21:29:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.RealTimeText = RealTimeText;
|