Since I have so many wow accounts running atm its a pain in the ass to log in manually when doing RaF and stuff like that.
I managed to make AutoIt open IE and enter username. But it stops there and gives me this error:
Code:
$o_object.fireEvent("OnChange")
$o_object.fireEvent("OnChange")^ ERROR
This is what I have so far. Anyone see the problem?
Code:
#include <IE.au3>
Call ("signIn")
Func SignIn ()
Global $oIE = _IECreate ("https://eu.battle.net/login/en")
Local $username =_IEGetObjByName ($oIE,"accountName")
Local $password = _IEGetObjByName ($oIE,"password")
_IEFormElementSetValue ($username, "[email protected]")
_IEFormElementSetValue ($password, "PASSWORD")
EndFunc
Also: I know this is probably not the right section but I figured it didn't belong in the wow bots and programs section either (?)