Skip to content

Commit

Permalink
fix: tab focused element
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Jul 31, 2023
1 parent 94bfb26 commit 5c97bee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/catch_tab.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ function populateFishRow(row) {
cy.get(`@${comboName}`).tab();
const cell1Name = `cell1${row}`;
cy.focused().as(cell1Name).type('1');
cy.get(`@${cell1Name}`).tab();
cy.focused().tab();
const cell2Name = `cell2${row}`;
cy.focused().as(cell2Name).type('1');
cy.get(`@${cell2Name}`).tab();
cy.focused().tab();
}

function addRow() {
Expand Down

0 comments on commit 5c97bee

Please sign in to comment.