Hello,
I have a string in my cucumber example which has the ^ character in it such as :
Ex-ample!_($#86)@So*^%82
my Step is something like
@Given(“blabla (.*) in titre”)
When I run the test, every character are set on the text field expect this little ^ which just decide to not appear at all. So the result is : Ex-ample!($#86)@So*%82 but I want Ex-ample!($#86)@So*^%82
How can I do that ?
Thanks in advance