Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iMacros wait until page loads

Tags:

imacros

I used to use iMacros all the time and to make the macro wait for the page to load it was as simple as:
SET !WAITPAGECOMPLETE YES
However now this doesn't work and it seems from the iMacros website http://wiki.imacros.net/!WAITPAGECOMPLETE that this feature isn't even compatible with Firefox anymore.

What is an alternative way of doing this other than waiting a specified amount of time? Surely there must be, why would subsequent version regress?

Thanks in advance P.S. Reverting back to IE is not an option

like image 590
quantum285 Avatar asked Sep 02 '14 14:09

quantum285


People also ask

How do I add wait in iMacros?

Same as a manual click of the "Pause" button: Stops the execution of the macro. Waits for user to click "Continue" to continue. Once the iMacros hits the PAUSE command then the PAUSE button on the Play tab changes its text to "Continue".

How do I change the time on my iMacros?

Just as an example, you can try something like this code: ' ... ' SET specificTime "2018-02-14T12:00:00" SET countdownTime EVAL("var ct = parseInt((new Date('{{specificTime}}') - new Date()) / 1000); Math. max(0, ct);") WAIT SECONDS={{countdownTime}} ' Happy Valentine's Day!

How do you comment on iMacros?

The single quote character ' indicates a comment. If a line starts with ' everything else on this line is ignored. Typically this is used for comments or to disable specific parts of a macro.


1 Answers

Use

SET !TIMEOUT_PAGE 120

Then you will increase waiting time for a page to 120 seconds.

like image 158
macroscripts Avatar answered Sep 22 '22 18:09

macroscripts