My PAUSE UNTIL with TIMEOUT action cancels its macro (as expected) but it also cancels its parent macro if it is executed from there. Is there a workaround for this? I want to execute a bunch of Chrome website log-in's simultaneously and then close any residual windows left open in Chrome at the end of the problematic parent macro.
I think I am following what you suggest but I don't think it will work here.
The "PAUSE UNTIL with TIMEOUT" action need to time out at 6s. It has to because it needs to work in both of these scenarios: 1) logged-in already (and so that image will never be found) 2) not logged-in.
The IF/THEN Action Result Condition test doesn't work as needed here. The macro never passes the "Pause Until" because if I am already signed-in then the Image does not exist. That's why I was trying to use some type of "Timeout".
I am trying to login to 4 web accounts with 1-click. Irrespective of whether I am logged-in now or not.
If you set a short timeout in the Pause Until, AND UNCHECK the "Abort macro after timeout", then AFTER the timeout control will pass to the next Action in the Macro.
So, when the Pause Until times out, control passes to the IF/THEN, which can test to see if it did time out (using the Action Result condition is NOT "OK").
I think if you will actually try the method I posted you will see that it does work.