From 5b7d7302b536f51ff66bb17b1c73713f16206aef Mon Sep 17 00:00:00 2001 From: Ramesh Mane <101566080+rameshmane7218@users.noreply.github.com> Date: Thu, 4 Jan 2024 06:16:41 +0000 Subject: [PATCH] fix: add new row playwright test case fail issue --- tests/playwright/pages/Dashboard/Grid/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/pages/Dashboard/Grid/index.ts b/tests/playwright/pages/Dashboard/Grid/index.ts index 019b0d7f87..0de41eb84b 100644 --- a/tests/playwright/pages/Dashboard/Grid/index.ts +++ b/tests/playwright/pages/Dashboard/Grid/index.ts @@ -124,7 +124,7 @@ export class GridPage extends BasePage { await this.get().locator('.nc-grid-add-new-cell').click(); // wait for insert row response - await this.rootPage.waitForTimeout(400); + await this.rootPage.waitForTimeout(1000); const rowCount = index + 1; await expect(this.get().locator('.nc-grid-row')).toHaveCount(rowCount);