Skip to content

Instantly share code, notes, and snippets.

@sandeepthukral
Created September 28, 2020 14:23
Show Gist options
  • Save sandeepthukral/41ab83665f5b687c34351769cd0facbc to your computer and use it in GitHub Desktop.
Save sandeepthukral/41ab83665f5b687c34351769cd0facbc to your computer and use it in GitHub Desktop.
Tips and Tricks for Cypress.io
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