Hi Tom, thanks for joining and contributing
You are right, we don't have anything that allows you to wait for
something to be not present or not visible
So I have added 3 new APIs to support this
| wait for element | locator | to be not visible |
| wait for element | locator | to be present |
| wait for element | locator | to be not present |
The last 2 I added, because I realised I did not have API to check for
presence, only visibility
These APIs should be released within the next 24-48 hours once I have
completed the testing.
So in with these new ones you should be able to do something like
|wait for element | xpath=//*[@id="loading"] | to be visible
| - Wait for it to appear
|wait for element | xpath=//*[@id="loading"] | to not be visible
| - Wait for it to disappear
K