I am using Autoit for authentication window in chrome using selenium. My Password Contains special character, but # is not getting entered in my Password.
My password is " D#e$r@2016"
Could anyone please help.
I am using Autoit for authentication window in chrome using selenium. My Password Contains special character, but # is not getting entered in my Password.
My password is " D#e$r@2016"
Could anyone please help.
The following code may helps, # has special meaning in auto IT. so it should be escaped using braces.
Method 1: send(" D{#}e$r@2016")
If you send all characters as raw then set the flag value to 1. By default, the flag is 0.
Method 2: send(" D#e$r@2016",1)