Created
January 9, 2022 10:34
-
-
Save hypeJunction/9af1b277acc308f1a6e9ec5ba28571e6 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
cy.getButton('Favorite animal') | |
.press() | |
.popup() | |
.its('visible') | |
.should('be', true); | |
cy.getListBox('Favorite animal') | |
.select('Elephant'); | |
cy.getInput('Favorite animal') | |
.should('have.attr', 'value', 'Elephant'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment