Hello,
i'm trying to use this UDF _IEquerySelectorAll() to check if i clicked a button in a web page.
here is the index.html:
and this is my autoit script including the _IEquerySelectorAll() function (modified by mLipok) :
well, so i'm supposed to see a msgbox when i click the button, but nothing happens...
Can someone help me please ? something should be wrong here:
$oDoc = _IEDocGetObj($oIE)
$oButton = _IEquerySelectorAll($oDoc,'button', 0)
ObjEvent($oButton, "_Evt_")
Func _Evt_onClick()
msgbox(0,"","button clicked")
EndFunc