Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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();
Expand Down
Loading