Jump to content

Need to find name of input tag


Recommended Posts

I currently have TD objects returned by the _IETagnameGetCollection

$oTable = _IETableGetCollection($oIE, 1) ; select first table, index 0
$oTR = _IETagnameGetCollection($oTable, "TR")
$oTRs = _IETagnameGetCollection($oTable, "TR")
$oTD = _IETagnameGetCollection($oTR, "TD")
For $oTR In $oTRs
   $oTDs = _IETagnameGetCollection($oTR, "TD")
    
    For $oTD in $oTDs
       If $var1=1 Then
          $var1=0
          $oInput = _IETagnameGetCollection($oTD, "Input") ;WRONG
          $InputName=$oInput.name ;Wrong
          MsgBox(0,"",$InputName)
_IEFormElementSetValue($InputName, "222")

EndIf

what im trying to do is find the Input tag name in the current TD so i can set the value. Where have i gone wrong?

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