Forum Discussion
rraghvani
Champion Level 3
2 years agoSee Waiting for an Object, Process or Window Activation - WaitNNN Methods. Same can be applied to Keyword Tests.
- megha_phophalia2 years agoContributor
I did not understand exactly how they works
- rraghvani2 years ago
Champion Level 3
If your object has a property name called Visible, that has a value of False - meaning that the object is not visible, then you can wait a number of seconds until the state changes to True. For example,
TestObj.WaitProperty("Visible", True, 5000);
Read and try to understand the documentation, as it clearly explains, with provided examples.