thanks it work fine , but next code it not working
example
$oTags = _IETagNameGetCollection($oIE, 'input')
If Not @error Then
For $oTag In $oTags
If $oTag.type == 'submit' And $oTag.value == 'Join Now' Then
_IEAction($oTag, 'click')
If Not @error Then ExitLoop
_IELoadWait($oIE)
If Not @error Then ExitLoop
EndIf
Next
EndIf
MsgBox(0, "test:", "it is not working , :(")