Jump to content

Clicking a submit button with no name or id


Recommended Posts

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="&lt;input&gt;" class="webdeveloper-display-form-details">&lt;input&gt;</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 by DoubleMcLovin
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...