How can I run javascript code in iMacros. Can I run:
function pageScroll() {
window.scrollBy(0,50); // horizontal and vertical scroll increments
scrolldelay = setTimeout('pageScroll()',100); // scrolls every 100 milliseconds
}
<body onLoad="pageScroll()">
There was one question here on stackoverflow, but I instructions were not helpful enough also iMacros editor has code generator and I used javascipt option, but still same result.