seeIsChecked

Verifies that a checkbox is checked on the current page.

Arguments

Name Type Required Default Description
selectorOrName string true The selector or name of the checkbox that should be checked.

Examples

it( "can verify a checkbox is checked", function() {
    this.visit( "/login" )
        .type( "scotty@uss.enterprise", "email" )
        .type( "miracle_worker", "password" )
        .check( "remember_me" )
        .seeIsChecked( "remember_me" );
} );