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

40 lines
1.4 KiB
JavaScript
Raw Normal View History

2023-03-08 23:33:05 +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 Pan extends MultiUsers {
constructor(browser, context) {
super(browser, context);
}
async test() {
await this.modPage.waitForSelector(e.resetZoomButton, ELEMENT_WAIT_LONGER_TIME);
const modWbLocator = this.modPage.getLocator(e.whiteboard);
const wbBox = await modWbLocator.boundingBox();
2023-03-08 23:33:05 +08:00
const screenshotOptions = {
maxDiffPixels: 1000,
};
2023-08-23 04:25:50 +08:00
const zoomResetBtn = this.modPage.getLocator(e.resetZoomButton);
2023-03-08 23:33:05 +08:00
for(let i = 100; i < 200; i += 25) {
2023-08-23 04:25:50 +08:00
const currentZoomLabel = await zoomResetBtn.textContent();
2023-03-08 23:33:05 +08:00
await this.modPage.waitAndClick(e.zoomInButton);
2023-08-23 04:25:50 +08:00
await expect(zoomResetBtn).not.toContainText(currentZoomLabel);
2023-03-08 23:33:05 +08:00
}
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 expect(modWbLocator).toHaveScreenshot('moderator-pan.png', screenshotOptions);
const userWbLocator = this.userPage.getLocator(e.whiteboard);
await expect(userWbLocator).toHaveScreenshot('viewer-pan.png', screenshotOptions);
2023-03-08 23:33:05 +08:00
}
}
exports.Pan = Pan;