06-29-2016, 02:55 PM
Do you know the object name that you wish to work on? or is there any unique value for the web element that is available?
IF yes, you can use a for loop to iterate through each item in objInList.
IF yes, you can use a for loop to iterate through each item in objInList.
Code:
For Each oEdit in objInList
strValue = oEdit.GetRoProperty("<YouUniqueKnowProperty>")
If Ucase(strValue)="<ExpectedValue>" THEN
<You Further Steps>
End IF
Next