Feature Request: AutoInput v2
In AutoInput v2, there is a "Wait For Element" action that waits until an element appears on the screen.
My current AutoInput workflow is like this:
click(id, %button_id) --> waitForElement(id, %loader_id) --> click(id, %button_id)
Since the loader's element ID is often hard to get (as it disappears instantly due to fast loading), could you add a "Wait For Element to Disappear" action that waits for an element to disappear?
This way, the workflow would only depend on %button_id and would become like this:
click(id, %button_id) --> waitForElementDisappear(id, %button_id) --> click(id, %button_id)
*Note: The loader element makes the button disappear from the screen temporarily.