Skip to content

Commit

Permalink
force click reporting test to access input field (#1575)
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Sebastian <[email protected]>
  • Loading branch information
paulstn authored Sep 15, 2024
1 parent 8f8ec2a commit 1d64b04
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ describe('Cypress', () => {
cy.wait('@notebook');

// update the report name
cy.get('#reportSettingsName').type('{selectall}{backspace} update name');
cy.get('#reportSettingsName')
.click({ force: true })
.type('{selectall}{backspace} update name');

// update report description
cy.get('#reportSettingsDescription').type(
Expand Down

0 comments on commit 1d64b04

Please sign in to comment.