From d2f899ba405b8b4acb2f1b20a83afa3d936e4b1a Mon Sep 17 00:00:00 2001 From: Ramesh Mane <101566080+rameshmane7218@users.noreply.github.com> Date: Mon, 8 Apr 2024 12:18:10 +0000 Subject: [PATCH] fix(test): grid delete operation test fail issue --- tests/playwright/tests/db/features/webhook.spec.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/playwright/tests/db/features/webhook.spec.ts b/tests/playwright/tests/db/features/webhook.spec.ts index b993371524..dbe54ba028 100644 --- a/tests/playwright/tests/db/features/webhook.spec.ts +++ b/tests/playwright/tests/db/features/webhook.spec.ts @@ -810,6 +810,8 @@ test.describe.serial('Webhook', () => { }); } + await dashboard.grid.clickRow(0); + // Select one record and delete await dashboard.grid.selectRow(0); await dashboard.grid.deleteSelectedRows();