I am currently using Watir with Firefox and it seems that when I try to set a field with the following text:
!@#$QWER7890uiop
The command I am using is the following:
text_field(:name, "password").value=("!@#$QWER7890uiop)
I've also tried this:
text_field(:name, "password").set "!@#$QWER7890uiop)
Only the first 2 characters get entered. Is there something I can do to by pass this feature?