Browse Source

feat(playwright): Potential fix for keyboard shortcuts test

pull/4482/head
Muhammed Mustafa 2 years ago
parent
commit
bbc2837e48
  1. 1
      tests/playwright/tests/keyboardShortcuts.spec.ts

1
tests/playwright/tests/keyboardShortcuts.spec.ts

@ -64,6 +64,7 @@ test.describe('Verify shortcuts', () => {
// Cmd + Right arrow
await dashboard.treeView.openTable({ title: 'Country' });
await page.waitForTimeout(1500);
await grid.cell.click({ index: 0, columnHeader: 'Country' });
await page.keyboard.press('Meta+ArrowRight');
await grid.cell.verifyCellActiveSelected({ index: 0, columnHeader: 'City List' });

Loading…
Cancel
Save