No, there is no built-in waitForProperty () method, so you cannot do something simple, for example tableObject.waitForProperty ("rowCount", x);
Your parameters should use a breakpoint, as you already did (if it did not break ...), or drill your own synchronization point using the do / while loop and the find () method.
The find() example below assumes doc is an html document. Adjust this as the parent java window.
TestObject[] tables = doc.find(atDescendant(".rowCount", x), false);
If you are not familiar with find() , search the RFT API link in the help menu. find() will be your best friend in RFT scripts.
source share