-2

I want to pass Send("sun@123!") as a string and tried the below script :

Send("abhishek.gaur") 
Send("{TAB}") 
Send("sun@123!") 
Send("{TAB}") 
Send("{ENTER}") 

It always skips! From the password string leading not to run Send("{ENTER}") step defined at the end of the script.

user4157124
  • 2,809
  • 13
  • 27
  • 42
Abhishek Gaur
  • 300
  • 1
  • 5
  • 20
  • 2
    read the [documentation](https://www.autoitscript.com/autoit3/docs/functions/Send.htm) - especially about the `flag` part. – Stephan May 15 '19 at 18:49
  • Possible duplicate of [How to use Send() to pass a string like "password#99@TT"?](https://stackoverflow.com/questions/52622171/how-to-use-send-to-pass-a-string-like-password99tt) – user4157124 Jul 20 '19 at 21:03

1 Answers1

0

Used Send("sun@123{!}") and acheived it.

Abhishek Gaur
  • 300
  • 1
  • 5
  • 20