@Then("^(?:ensure that )?" + StandardSahiSteps.ELEMENT_REGEX + " (?:should not start with|does not start with) \"([^\"]*)\"$")
public void the_element_should_not_start_with( String type,
String locator,
Integer position,
String value ) throws Throwable {
verify( Arrays.asList( new ElementDescriptor( locator, position, type, value ) ), null,
VerifyOperation.STARTS_WITH, false );
}