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 @@ -75,7 +75,9 @@ def test_validate_row_selection_in_edit_mode(
# Tab to the column name, hit enter. Verify the table becomes sorted.
# Tab to an HTML column name, hit enter. Verify the sort does not update.
page.keyboard.press("Escape")
data_frame._expect_row_focus_state(True, row=1)
page.keyboard.press("Escape")
data_frame._expect_row_focus_state(False, row=1)
page.keyboard.press("Tab")
page.keyboard.press("Tab") # tab to sample number
page.keyboard.press("Enter")
Expand Down
Loading