#include <IE.au3>
Local $oIE = _IECreate("https://login.yahoo.com/config/login")
sleep(3000)
Local $UserName = _IEGetObjById($oIE, "login-username")
Local $Next = _IEGetObjById($oIE, "login-signin")
_IEFormElementSetValue($UserName, "my_username")
_IEAction($Next, "Click")
Sleep(3000);just delay to wait for next fields
;Local $UserPass = _IEGetObjById($oIE, "login-passwd")
send("my_password")
sleep(2000)
send("{TAB}")
send("{TAB}")
sleep(1000)
send("{ENTER}")
sleep(5000)
_IENavigate($oIE,"http://groups.yahoo.com") ;=> error ???
sleep(3000)
;_IELinkClickByText($oIE ,'Sign out')
_IENavigate($oIE,"http://login.yahoo.com/?logout=1")
I encountered error with _IENavigate()...any idea why ? compatibility issue on IE11?
--> Press Ctrl+Alt+Break to Restart or Ctrl+Break to Stop
"C:\Program Files (x86)\AutoIt3\Include\IE.au3" (272) : ==> The requested action with this object has failed.:
$oObject.navigate($sUrl)
$oObject^ ERROR
->12:01:51 AutoIt3.exe ended.rc:1
+>12:01:51 AutoIt3Wrapper Finished.