Created
September 28, 2020 14:23
-
-
Save sandeepthukral/41ab83665f5b687c34351769cd0facbc to your computer and use it in GitHub Desktop.
Tips and Tricks for Cypress.io
This file contains 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
Checking if a checkbox is checked | |
cy.get('input').then( $input => { | |
if ( $input.is(':checked') ) { | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment