DoubleMcLovin 1 Posted September 15, 2010 (edited) I have a submit button on a webpage, the html source relevant to it is as follows:<div id="grade_quiz_button" align="right"><span title="<input>" class="webdeveloper-display-form-details"><input></span><input value="Submit Answers" onclick="javascript:gradeQuiz();javascript:scrollTops();" type="button"></div> The " <input " field does not contain an id or name, but does contain a value. How can I click this button? EDIT: $oButtons = _IETagNameGetCollection ($oIE, "INPUT") For $oButton In $oButtons If $oButton.type = "button" Then _IEAction ($oButton, "click") ExitLoop EndIf Next Does the trick. Edited September 15, 2010 by DoubleMcLovin Share this post Link to post Share on other sites
wakillon 403 Posted September 16, 2010 It's not the example forum, but help forumso, what's the question ? AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites