I posted this before but think maybe it wasn't clear that I was hoping for an answer.
So far, every problem I've had with iMacros has been pretty readily solvable - until now.
Generally, the program is really powerful but I'm at a road block.
My app. is in php and depends entirely on its ability to read the html from the last loaded page.
A standard login is: 1. Login, 2. Get 'You are logged in . . . ' which after 2 seconds or so, 3. redirect to the main 'logged in' page.
iMacros keeps reading the page before the redirect, which makes sense unless I can tell it 'wait for the redirect to complete'.
I tried using WAIT but iMacros executes the macro after the wait even if it's right in the middle of downloading the page. I tried to add a WAIT SECONDS=#DOWNLOAD# but then it makes me wait a full 60 seconds for nothing.
How should I handle a delayed redirect to be able to read the html and execute the remainder of the macro on the redirected page?