Skip to content

Instantly share code, notes, and snippets.

@wataruoguchi
Created May 18, 2018 04:39
Show Gist options
  • Save wataruoguchi/4a7f322e075438d457e22b5156b01817 to your computer and use it in GitHub Desktop.
Save wataruoguchi/4a7f322e075438d457e22b5156b01817 to your computer and use it in GitHub Desktop.
// Before fix
// describe('btn-label-says-clicked', () => {
// it ('can click the button and fires the event', () => {
// cy.get('#foo-btn').click()
// })
// })
// After fix
describe('btn-label-says-clicked', () => {
it ('can click the button and fires the event', () => {
cy.get('#foo-btn[get-cy=event-attached]').click()
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment