DoubleMcLovin Posted September 15, 2010 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
wakillon Posted September 16, 2010 Posted September 16, 2010 It's not the example forum, but help forumso, what's the question ? AutoIt 3.3.18.0 X86 - SciTE 4.4.6.0 - WIN 11 24H2 X64 - Other Examples Scripts
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now