Name | Type | Required | Default | Description |
---|---|---|---|---|
text | string | true | The value to type in the form field. | |
selectorOrName | string | true | The element selector or name to type the value in to. |
it( "can visit type values in to form fields", function() {
this.visit( "/contact-us" )
.type( "James T. Kirk", "name" )
.type( "james.t.kirk@uss.enterprise", "email" );
} );