Hi Anil,
Sub: How to handle Dynamic Objects in App
Example: Item001, Item002....
Take Object Type / Object Identifier, ColumnIndex / Row Index in Array
' Object Type / Objecct Identifier should be Unique
'RowIndex / ColumnIndex should be vary
Ex:
Dim PropArray
Dim ValuesArray
Dim AppArray()
Flag = 1
RowSize = 1
arraySize = 0
Set iexplore = Aliases.IEXPLORE
Set Page = iexplore.PageRegistration
Page.Wait
Do Until Flag = 0
Redim Preserve AppArray(arraySize)
PropArray = Array("ObjectType", "RowIndex")
ValuesArray = Array("TextNode", RowSize)
apData = Page.FindAllChildren(PropArray, ValuesArray, 12)
If Ubound(apData ) < 0 Then
Flag = 0
Exit Do
End If
AppArray(arraySize) = apData(0).innerText
RowSize = RowSize +1
arraySize = arraySize + 1
Loop
For I = 0 to ubound(AppArray) - 1
log.message AppArray(I)
Next
'This script for getting data from app
If u want more details send me a detailed problem and screen shot, I'll Explain You...
Feel free to contact me, if u have any doubts
Regards,
-Prakash
prakashraju06@gmail.com