Name | Type | Required | Default | Description |
---|---|---|---|---|
text | string | true | The expected text of the link. | |
url | string | false | The expected url of the link. |
it( "can verify a link exists", function() {
this.visit( "/" )
.seeLink( "Contact Us" );
} );
it( "can verify a link with a specific url exists", function() {
this.visit( "/" )
.seeLink( "Contact Us", "/contact-us" );
} );