diff --git a/e2e/testcafe-devextreme/tests/dataGrid/common/keyboardNavigation/keyboardNavigation.functional.ts b/e2e/testcafe-devextreme/tests/dataGrid/common/keyboardNavigation/keyboardNavigation.functional.ts index 92dfb66eb013..e1f5d1cc355b 100644 --- a/e2e/testcafe-devextreme/tests/dataGrid/common/keyboardNavigation/keyboardNavigation.functional.ts +++ b/e2e/testcafe-devextreme/tests/dataGrid/common/keyboardNavigation/keyboardNavigation.functional.ts @@ -6795,7 +6795,11 @@ test('Focus should be set to the grid to allow keyboard navigation when the focu // act await t .click(searchPanel.input) - .pressKey('tab tab tab tab tab'); + .pressKey('tab') + .pressKey('tab') + .pressKey('tab') + .pressKey('tab') + .pressKey('tab'); // assert await t.expect(secondIDCell.isFocused).ok(); @@ -6811,13 +6815,18 @@ test('Focus should be set to the grid to allow keyboard navigation when the focu .notOk('focus should be on the search panel'); // act - await t.pressKey('tab tab tab'); + await t + .pressKey('tab') + .pressKey('tab') + .pressKey('tab'); // assert await t.expect(secondIDCell.isFocused).ok(); // act - await t.pressKey('tab tab'); + await t + .pressKey('tab') + .pressKey('tab'); // assert await t.expect(button.isFocused).ok();