Squish/Waiting for a Progress Bar

From Qt Wiki
< Squish
Revision as of 15:01, 14 January 2015 by Maintenance script (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Waiting for a progress bar or progress dialog

When you have a calculation or some other work item in your AUT that takes an arbitrary amount of time to complete, it can be hard to get your test script to be stable by just using snooze() or waitForObject() calls to wait for the work item to finish. Instead, you can use the more powerful waitFor() method, that takes any code statement, executes it until it returns True, or until the optional timeout is reached before it continues the script playback.

Assuming the work item shows a progress bar or a progress dialog while it is running, you can easily use waitFor() to make sure your script does not continue playback until the work item has completed and the progress dialog has gone away:

This will wait for the progress dialog to show up for 20 seconds, then wait for it to go away again. So even if the calculation is so quick that the progress dialog never shows up, the script will always continue, although it may take up to 20 seconds for it to do so.

Categories: