Browse Source

fix:removed verify function call in test

pull/6486/head
sreehari jayaraj 9 months ago
parent
commit
4c3ac9f1f0
  1. 4
      tests/playwright/tests/db/features/keyboardShortcuts.spec.ts

4
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();

Loading…
Cancel
Save