Forum Discussion
2 Replies
- Anumakonda_maheFrequent Contributori am trying with this code
Sub
Test2()
Dim PropNames, PropValues, LastResult
PropNames = Array("ObjectType")
PropValues = Array("Textarea")
LastResult =
NameMapping.Sys.iexplore.pageCaliberlims320.formF1.table.cell.table.cell.frameAppbody.frameBodyframe.formForm1.tableTable1.cell.tableSubtable.FindAllChildren(PropNames, PropValues, 1000, True).Name
Call
Log.Message(LastResult, "")
End
Sub - Anumakonda_maheFrequent ContributorI got it i have used below code.
Sub Tofindfieldcount()
DIM Fieldslist, Fieldsinscrn
Fieldslist = Aliases.iexplore.mainpage.formF1.table.cell.table.cell.frameAppbody.frameBodyframe.formForm1.cellMaintd_2.tableDistable.FindALLChildren(Array("ObjectType"), Array("Textarea"), 1000, True)
Fieldsinscrn = uBound(Fieldslist)
Log.Message(Fieldsinscrn)
End Sub