Hi Jordi - the conundrum here is that the wait stage (and almost every other) depends on the object being attached, and you can only become attached once the application is running. Here's one solution:Create a page called 'Wait for Attach'Use a navigate to attach in the normal way, but protect the navigate with an exception block and Recover/Resume.If the attach fails, assume that the application has not started yet. After the Resume have a 1 second timeout-wait, then use a calculation to track how many times you have waited in total. If you have waited too long (eg 30 seconds) assume there is a big problem and give up by throwing an exception.If you have not exceeded the maximum wait time, return to the navigate and try to attach again. Eventually, when the application is ready, the attach will succeed and you can carry on.