From 4c3ac9f1f07730fa25c55cce5e750cc5b065058c Mon Sep 17 00:00:00 2001 From: sreehari jayaraj Date: Mon, 2 Oct 2023 14:14:13 +0530 Subject: [PATCH] fix:removed verify function call in test --- tests/playwright/tests/db/features/keyboardShortcuts.spec.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/playwright/tests/db/features/keyboardShortcuts.spec.ts b/tests/playwright/tests/db/features/keyboardShortcuts.spec.ts index e4d656ace4..eaa0792a67 100644 --- a/tests/playwright/tests/db/features/keyboardShortcuts.spec.ts +++ b/tests/playwright/tests/db/features/keyboardShortcuts.spec.ts @@ -130,9 +130,7 @@ test.describe('Verify shortcuts', () => { // Space to open expanded row and Meta + Space to save await grid.cell.click({ index: 1, columnHeader: 'Country' }); await page.keyboard.press('Space'); - await dashboard.expandedForm.verify({ - header: 'Algeria', - }); + await dashboard.expandedForm.fillField({ columnTitle: 'Country', value: 'NewAlgeria' }); await dashboard.expandedForm.save(); await dashboard.expandedForm.escape();