wsh - SendKeys not working in Windows 7 -


i using code in windows 7 ultimate , not working allow me sign in site. see wrong it?

    set wshshell = wscript.createobject("wscript.shell")     call wshshell.run("http://www.gmail.com", 1, false)      wscript.sleep 2000     wshshell.sendkeys "username"     wscript.sleep 1000     wshshell.sendkeys "{tab}"     wscript.sleep 1000     wshshell.sendkeys "password"     wshshell.sendkeys "{tab}"     wscript.sleep 1000     wshshell.sendkeys "{enter}"     wscript.quit() 


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

java - How to create Table using Apache PDFBox -

mpi - Why is MPI_Bsend not returning error even when the buffer is insufficient to accommodate all the messages -