Name | Type | Required | Default | Description |
---|---|---|---|---|
selectorOrName | string | true | The selector or name of the checkbox that should be checked. |
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" );
} );