2022-12-16 23:39:21 +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 DrawStickyNote extends MultiUsers {
|
|
|
|
constructor(browser, context) {
|
|
|
|
super(browser, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
async test() {
|
|
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
await this.modPage.waitAndClick(e.wbStickyNoteShape);
|
|
|
|
|
2023-02-14 21:59:46 +08:00
|
|
|
const wbBox = await this.modPage.getElementBoundingBox(e.whiteboard);
|
2022-12-16 23:39:21 +08:00
|
|
|
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);
|
|
|
|
|
2023-02-14 21:59:46 +08:00
|
|
|
await this.modPage.hasText(e.wbTypedStickyNote, 'AB');
|
|
|
|
await this.modPage2.hasText(e.wbTypedStickyNote, 'AB');
|
2023-01-20 06:25:50 +08:00
|
|
|
|
2022-12-16 23:39:21 +08:00
|
|
|
const clipObj = {
|
|
|
|
x: wbBox.x,
|
|
|
|
y: wbBox.y,
|
|
|
|
width: wbBox.width,
|
|
|
|
height: wbBox.height,
|
|
|
|
};
|
|
|
|
|
|
|
|
await expect(this.modPage.page).toHaveScreenshot('moderator1-sticky.png', {
|
|
|
|
maxDiffPixels: 1000,
|
|
|
|
clip: clipObj,
|
|
|
|
});
|
|
|
|
await expect(this.modPage2.page).toHaveScreenshot('moderator2-sticky.png', {
|
|
|
|
maxDiffPixels: 1000,
|
|
|
|
clip: clipObj,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.DrawStickyNote = DrawStickyNote;
|