We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a42248f + 3535e74 commit f8e09caCopy full SHA for f8e09ca
cypress/support/pageObjects/AddStatementFormPage.ts
@@ -50,7 +50,9 @@ export class AddStatementFormPage {
50
}
51
52
public setSnakValue( inputText: string ): this {
53
- this.snakValueInput().type( inputText );
+ this.snakValueInput().clear();
54
+ this.snakValueInput().type( inputText, { parseSpecialCharSequences: false } );
55
+ this.snakValueInput().should( 'have.value', inputText );
56
return this;
57
58
0 commit comments