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.