Name | Type | Required | Default | Description |
---|---|---|---|---|
text | string | true | The text of the link that should not be found. | |
url | string | false | The url that should not be found. |
it( "can verify a link doesn't exist", function() {
this.visit( "/" )
.dontSeeLink( "Administrator" );
} );
it( "can verify a link with a specific url doesn't exist", function() {
this.visit( "/" )
.dontSeeLink( "Contact Us", "/admin" );
} );