1

I am using AutoIt to handle a browser authentication window which Selenium can't access. Below is my AutoIt code.

Send("demo")
Send("{TAB}")
Send("password#99@TT")

It only sends password#; remaining characters 99@TT are skipped. Please let me know how to pass such a string via Send() command.

user4157124
  • 2,533
  • 12
  • 24
  • 39
user3302083
  • 736
  • 2
  • 12
  • 31

1 Answers1

2

In the documentation of AutoIt about the Send() function you have an option to send RAW.

See more documentation here

In your case, I would try Send("password#99@TT", 1)

Hope this helps!

Edit

You can try also Send("password{#}99@TT")

I have found just now this answer link, I think it can help you.

Moshe Slavin
  • 4,939
  • 5
  • 21
  • 36
  • user4157124 ,, Thanks a lot ... Send("password#99@TT", 1)) is works for me .. Now it not skipping any characters – user3302083 Oct 03 '18 at 10:43