Name | Type | Required | Default | Description |
---|---|---|---|---|
selectorOrName | string | true | The selector or name of the element to not find. |
it( "can see that a specific element does not exist", function() {
this.visit( "/" )
.dontSeeElement( ".alert" );
} );