From 305ec6dc96dc574cfac9d4e3af30bb5359f99d8f Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Mon, 8 Apr 2024 12:18:10 +0000 Subject: [PATCH] fix: pw --- tests/playwright/pages/Dashboard/Grid/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/playwright/pages/Dashboard/Grid/index.ts b/tests/playwright/pages/Dashboard/Grid/index.ts index b1d9bd9887..08ae42dcd7 100644 --- a/tests/playwright/pages/Dashboard/Grid/index.ts +++ b/tests/playwright/pages/Dashboard/Grid/index.ts @@ -212,6 +212,9 @@ export class GridPage extends BasePage { } async deleteRow(index: number, title = 'Title') { + await this.get().getByTestId(`cell-${title}-${index}`).click(); + await this.rootPage.waitForTimeout(300); + await this.get().getByTestId(`cell-${title}-${index}`).click({ button: 'right', });