Created
May 18, 2018 04:39
-
-
Save wataruoguchi/4a7f322e075438d457e22b5156b01817 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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