Name | Type | Required | Default | Description |
---|---|---|---|---|
selectorOrName | string | true | The selector or name of the checkbox that should not be checked. |
it( "can verify a checkbox is not checked", function() {
this.visit( "/login" )
.type( "scotty@uss.enterprise", "email" )
.type( "miracle_worker", "password" )
.dontSeeIsChecked( "remember_me" );
} );