Jump to content

thebestnewbie

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by thebestnewbie

  1. Thanks Dale, Sorry for the lack of details. Actually I debugged it with some MsgBox. The loop was crashing because the last Tag return by the Collection method is : Null. So I just added your syntax and an ExitLoop after the end and it made it.
  2. 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.
  3. I tought to use navigate but i didnt knew which php variable or javascript to use. Thank You.
  4. Hi, I want to click this button in the form to Save the user im creating. I've tried with LinkClickbyTexT I've tried this : $oTags = _IETagNameGetCollection($oIE, 'input') For $oTag In $oTags $oTag.Value == 'Save' Then _IEAction($oTag, 'click') _IELoadWait($oIE) Next Nothing is working right now!!! I don't if the hidden input make it bug or something!!! <input type="hidden" name="action" id="action" value="add"> <p align="center"> <input name="btnAdd" type="submit" id="btnAdd" value="Save" class="btn"> </p> </form> PLZ HELP !!!!!
×
×
  • Create New...