dontSeeIsChecked

Verifies that a field with is not checked on the current page.

Arguments

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

Examples

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