Skip to content

Commit

Permalink
more e2e test fixes for now-hidden frame buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
jharris4 committed May 14, 2021
1 parent cc098a0 commit 284ba6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e_tests/integration/saved-scripts.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('Saved Scripts', () => {

it('can save a result as favorite', () => {
cy.executeCommand('RETURN 1')
cy.get('[data-testid=frame-Favorite]').click()
cy.get('[data-testid=frame-Favorite]').click({ force: true })

// saved in the list and can populate editor
cy.get('[data-testid="navicon-RETURN 1"').click({ force: true })
Expand Down Expand Up @@ -62,7 +62,7 @@ describe('Saved Scripts', () => {
cy.get('[data-testid=editor-discard]').click()
cy.executeCommand(':clear')
cy.executeCommand(':help cypher')
cy.get('[data-testid=frame-Favorite]').click()
cy.get('[data-testid=frame-Favorite]').click({ force: true })

cy.get('[data-testid="savedScriptsButton-New folder"]').click()
cy.get('[data-testid=editSavedScriptFolderName]').type('fldr{enter}')
Expand Down

0 comments on commit 284ba6e

Please sign in to comment.