iMacros scroll list

yum114

Newbie
Joined
Nov 24, 2014
Messages
16
Reaction score
1
I need a script to scroll through a followers or follwing list. but even the script that I have that works. only scrolls once. it does go down far enough for instagram to populate the next set of users. any imacros users that have a working script?

Ive tried

EVENT TYPE=KEYPRESS SELECTOR="div,__4gt3b" KEY=10
WAIT SECONDS=12
EVENT TYPE=KEYPRESS SELECTOR="div,__4gt3b" KEY=10
WAIT SECONDS=12
EVENT TYPE=KEYPRESS SELECTOR="div,__4gt3b" KEY=10
WAIT SECONDS=12
EVENT TYPE=KEYPRESS SELECTOR="div,__4gt3b" KEY=10
WAIT SECONDS=12

Ive tried changing both the wait time and key time it was originally set at 35 which didnt work either. and I've tried both one and two underscores after "div,"
 
scripting interface solution:
Code:
window.content.document.querySelector('._gs38e').scrollTop = 20000000;

I tried it with url goto=javascript:..., it works, but redirects the page, so it does not work after all xD
 
Back
Top