Hi,
I've got some problem to properly hit that button.
HTML :
<tr>
<td colspan=3 align=center><input type=submit value="Send"></td>
</tr>
Code I've got so far :
$oTags = _IETagNameGetCollection($oIE, "input")
For $oTag In $oTags
If $oTag.Value == "Send" Then
_IEAction($oTag, "click")
_IELoadWait($oIE)
EndIf
Next
If you got any idea please share with me. I don't seems to find any place it tells me all the element I can get from $oTag.xxx , Maybe there is a $oTag.Type I can use and put submit in it.
Thanks to everyone who post in this thread.