Jump to content

Submitting a 'button' in IE


Recommended Posts

Have you tried to access it by the index value?

#include <IE.au3> 
$oIE = _IECreate ("http://www.autoitscript.com") 
$oElements = _IEFormElementGetCollection ($oIE) 
MsgBox(0, "Elements Info", "There are " & @extended & " elements on this page") 
For $oElement In $oElements     
   MsgBox(0, "Element Info", $oElement.name) 
Next

This example shows how to get the list of elements. It puts it in an array. Use the array index value to access the control.

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...