When running a test, an application might not always respond with the same speed; e.g., it might take a few seconds:

- For a button to become enabled
- For a progress bar to reach 100%
- For a window or pop-up message to open
- For a status message to appear


Options to synchronize your test
- We can modify the default amount of time that QuickTest waits for a web page to load.
- We can insert a synchronization point, which instructs QuickTest to pause the test until an object property achieves the value you specify. When you insert a synchronization point into your test, QuickTest generates a WaitProperty statement in the Expert View.

- When working with tests, we can increase the default timeout settings for a test in order to instruct QuickTest to allow more time for objects to appear.
- We can insert Wait or Exist statements that instruct QuickTest to wait until an object exists or to wait a specified amount of time before continuing the test.

Gowtham RajamanickamPosted Apr 12, 2016, 2:20 AM
Good One, Thanks for sharing