Check Property is used to Find the perticlular Item in a Perticular location.
Suppose you want to check "Google" from
www.google.com so you need to write code like.
aqObject.CheckProperty("Object", "Property", Condition, "Value")
Object meas that your location - sys.process("Internerexplorer").Panel(0).Cell(1, 0) like that
Property means that, what you want to be check - InnerText, wText, context ...
Condition like Equal, notequal, greaterta, lessthen.......
Value whatever you want to compaire.
Example-
aqObject.CheckProperty("sys.process("Internerexplorer").Panel(0).Cell(1, 0)", "InnerText" cmpEqual "Google")What it does. It check Google word on Google web site (On perticular location only)
It Might help you.
Thanks
Ravik