Hi Everyone! So I use Autoit to automate my logins. Gmail has recently made some changes to their login page that breaks my script. The username goes in okay, but not the password. I can type in the password manually and it's no problem. What I can't understand is how does the browser know the password is not being typed in manually? I tried every trick I could think of (i'm an Autoit noob) to simulate human typing. Using send() raw and slowing down the type rate of the keys. Nothing works, can anyone shed some light on this? #include <WinAPIShPath.au3>
#include <Array.au3>
Opt("SendKeyDelay", 25)
Opt("SendKeyDownDelay", 25)
Send("email@gmail.com", 1)
sleep(1500)
Send("{enter down}", 0)
Send("{enter up}", 0)
sleep(1500)
Send("password", 1)
sleep(1500)
Send("{enter down}", 0)
Send("{enter up}", 0)