diff --git a/pages/workspace/main-page.js b/pages/workspace/main-page.js index c462a6ea..32441da1 100644 --- a/pages/workspace/main-page.js +++ b/pages/workspace/main-page.js @@ -254,14 +254,14 @@ exports.MainPage = class MainPage extends BasePage { async clickViewportTwice() { await this.viewport.hover(); - await this.viewport.click({ delay: 300 }); - await this.viewport.click({ delay: 300 }); + await this.viewport.click({ delay: 300, force: true }); + await this.viewport.click({ delay: 300, force: true }); } async clickViewportByCoordinates(x, y) { await this.viewport.hover(); - await this.viewport.click({ position: { x: x, y: y }, delay: 300 }); - await this.viewport.click({ position: { x: x, y: y }, delay: 300 }); + await this.viewport.click({ position: { x: x, y: y }, delay: 300, force: true }); + await this.viewport.click({ position: { x: x, y: y }, delay: 300, force: true }); } async isUnSavedChangesDisplayed() {