Forum Discussion
- lnd_amaralContributor
To read a element value and how to use it like a parameter compare, first you need to find the element. Can you try to use the method findChild.
Example:
var element = Sys.Process("iexplore").FindChild(attribute, value, 500);
Now, after you have the element, you can compare any property value using "aqObject.CheckProperty()" method.
See details in: http://support.smartbear.com/viewarticle/55550/
//this code will compare if the name of element is equal 'Tescomplete'
aqObject.CheckProperty(element , "Name", cmpEqual, "Testcomplete");