Not able to pass # in my password using autoIT
问题 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. 回答1: 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) 来源: https://stackoverflow