I have a liste of instagram locations I’d need to like
.
So I want iMacros to like the current opened post (or the most recent
post of the location), like, wait a random value between 1 to 10 sec, and go to next post.
The code I’ve got so far is that one:
VERSION BUILD=10021450
TAB T=1
SET !ERRORIGNORE YES
SET !TIMEOUT_STEP 10
SET !LOOP 1
WAIT SECONDS=3
TAG POS=1 TYPE=A ATTR=TABINDEX:0 EXTRACT=HREF
SET !VAR1 EVAL("var randomNumber = Math.floor(Math.random() * 10) + 1; randomNumber;")
URL GOTO={{!EXTRACT}}
WAIT SECONDS=3
TAG POS=1 TYPE=SPAN ATTR=ARIA-LABEL:Like
WAIT SECONDS={{!VAR1}}
TAG POS=1 TYPE=A ATTR=ARIA-LABEL:Next
WAIT SECONDS=3
but it seems iMacros can’t find the right TAG
anymore. Any leads ?