7a67c54e25
* fixing whiteboard tests * fix undo whiteboard test * finished updating whiteboard tests * updated two tests * updated all whiteboard screenshots, pan test is flaky * changing whiteboard checks * whiteboard tests updated * rm screenshots from failing tests * changed repeat code to be in a function * change data-shape-type * changed selector * skip check for screenshot on ci * changes on function name * adding @ci to all test specs * removed tag on unecessary test
34 lines
1.1 KiB
JavaScript
34 lines
1.1 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 UndoDrawing extends MultiUsers {
|
|
constructor(browser, page) {
|
|
super(browser, page);
|
|
}
|
|
|
|
async test() {
|
|
await this.modPage.waitForSelector(e.whiteboard, ELEMENT_WAIT_LONGER_TIME);
|
|
|
|
const modWbLocator = this.modPage.getLocator(e.whiteboard);
|
|
const wbBox = await modWbLocator.boundingBox();
|
|
|
|
await this.modPage.waitAndClick(e.wbArrowShape);
|
|
|
|
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.wbUndo);
|
|
await this.modPage.setHeightWidthViewPortSize();
|
|
await this.userPage.setHeightWidthViewPortSize();
|
|
|
|
await this.modPage.wasRemoved(e.wbDrawnArrow);
|
|
await this.userPage.wasRemoved(e.wbDrawnArrow);
|
|
}
|
|
}
|
|
|
|
exports.UndoDrawing = UndoDrawing;
|