I'm using AutoIt to handle a login webpage, when "Logout" is clicked, a popup window appears, but winwait() can not find this window
The script just waited and waited... The above code has been tested on Win7 64 and WinXP 32, just not working. Anybody knows why?
[ autoit ]
#include<IE.au3> Local $IE, $Form1 $IE=_IECreate("http://210.77.16.29/indexE.html", 0,1,1,1); $Form1=_IEFormGetObjByName($IE, "form1") _IELinkClickByText($Form1, "Logout") WinWait("Message from webpage") Msgbox(1, "Info", "Popup window found“)
The script just waited and waited... The above code has been tested on Win7 64 and WinXP 32, just not working. Anybody knows why?