Jump to content

bills4

Active Members
  • Posts

    35
  • Joined

  • Last visited

Everything posted by bills4

  1. <a class="ui-datepicker-next ui-corner-all" title="Next" onclick="DP_jQuery_1318273570795.datepicker._adjustDate('#datepicker', +1, 'M');"> <span class="ui-icon ui-icon-circle-triangle-e">Next</span> </a> this is full linnk
  2. i have this code <span class="ui-icon ui-icon-circle-triangle-e">Next</span> how to click to it ?
  3. thanks i tried but it is not working $checkbox_lexing = _IEFormGetObjByName ($oIE, "frmSIGNUP3") _IEFormElementCheckboxSelect ($checkbox_lexing, "accept_poa", "", 1, "byValue") i don't know why , maybe by code <label ...> </label > make it can't work
  4. This is box need check <label class="checkbox" for="accept_poa" style="background-position: 0pt 0pt;"> <input id="accept_poa" type="checkbox" value="yes" name="accept_poa"> </label> i tried but it is not working $oIE.document.getElementById("accept_poa").click
  5. <input id="username" class="input_text" type="text" placeholder="At least 6 characters" maxlength="20" name="username"> <input id="password" class="input_text" type="password" placeholder="At least 7 characters" maxlength="35" name="password"> tried but is not working , how can make it work $oIE.document.getElementById("username").value="xethoas" $oIE.document.getElementById("password").value="j5V9F6ho"
  6. On a page have 2 button same images , i want to it click to link 2 , how can make it work ?
  7. thank i resolve $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') _IELoadWait($oIE) If Not @error Then ExitLoop EndIf Next EndIf MsgBox(0, "test:", "it is working , :) ")
  8. 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 , :(")
  9. this is button i must click <input id="" type="submit" value="Join Now"> i try this code $oTags = _IETagNameGetCollection($oIE, 'input') If Not @error Then For $oTag In $oTags If $oTag.typeName == 'submit' And $oTag.value == 'Join Now' Then _IEAction($oTag, 'click') _IELoadWait($oIE) But it not working . Button second i have this button but it have 2 button same name images <a href="link1"> <img class="uss-btn-get-report" height="39" width="99" alt="Get Your Report" src="/button_orange_get_your_report_99x39.gif"> </a> and this <a href="link2"> <img class="uss-btn-get-report" height="39" width="99" alt="Get Your Report" src="/button_orange_get_your_report_99x39.gif"> </a> how to make it click to link2 ?
×
×
  • Create New...