Description
This extension generates new actions waitAndBlahBlah (e.g. waitAndClick, waitAndSelect), which allow replacing the two commands 'waitForElementPresent' followed by 'BlahBlah' by a single command 'waitAndBlahBlah'.
It also provides a fix for SEL-510 (Function 'continueTestWhenConditionIsTrue' should behave the same way as 'resume' on command), and increases the retry interval for waitForCondition from 10ms to 500ms to avoid hammering the browser. This code is commented by default.
Example of use
In your scripts, replace:
| waitForElementPresent |
id=myCombo |
|
| select |
id=myCombo |
value=myValue |
by:
| waitAndSelect |
id=myCombo |
value=myValue |
License
Public Domain
Download
waitAndActions