SCROLL DOWN not working on twitter.com

Discussions and Tech Support specific to the iMacros Firefox add-on.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Post Reply
Alan124
Posts: 1
Joined: Wed Oct 21, 2015 12:11 pm

SCROLL DOWN not working on twitter.com

Post by Alan124 » Thu Oct 22, 2015 10:42 am

Hi,

Usually the following command works great to scroll down any webpage:
URL GOTO=javascript:window.scrollBy(0,20000)

However it does not scroll at all on twitter.com webpages, especially the following webpage.

Does anyone encountered such behavior before?
Has anyone been able to solve this issue ?

Thanks!
questions
Posts: 69
Joined: Wed Apr 23, 2008 9:23 pm

Re: SCROLL DOWN not working on twitter.com

Post by questions » Wed Mar 23, 2016 11:15 pm

i'm looking for this too, did you find a solution?
sgetgs
Posts: 6
Joined: Wed Mar 23, 2016 12:02 pm

Re: SCROLL DOWN not working on twitter.com

Post by sgetgs » Thu Mar 24, 2016 1:04 pm

put this in your browser console and hit enter

Code: Select all

setInterval(function() { window.scrollTo(0, document.body.scrollHeight); }, 2000);
techimac
Posts: 482
Joined: Fri Feb 20, 2015 9:27 pm

Re: SCROLL DOWN not working on twitter.com

Post by techimac » Sat Apr 16, 2016 11:38 am

This is not working.
Available for custom iim, javascript iMacros scripts
User avatar
thecoder2012
Posts: 446
Joined: Sat Aug 15, 2015 5:14 pm
Location: Internet
Contact:

Re: SCROLL DOWN not working on twitter.com

Post by thecoder2012 » Sat Apr 16, 2016 8:32 pm

You can try page up and down as replacement for your scroll function.
' Page Up '
EVENT TYPE=KEYPRESS SELECTOR=* KEY=33

' Page Down '
EVENT TYPE=KEYPRESS SELECTOR=* KEY=34

And in a row:
' Page Up '
EVENTS TYPE=KEYPRESS SELECTOR=* KEYS="[33,33,33,33,33,33,33,33,33,33,33]"

' Page Down '
EVENTS TYPE=KEYPRESS SELECTOR=* KEYS="[34,34,34,34,34,34,34,34,34,34,34]"

It's like 0.88 * window.innerHeight:
' Page Up with Javascript '
URL GOTO=javascript:window.scrollBy(0,-0.88*window.innerHeight);

' Page Down with Javascript '
URL GOTO=javascript:window.scrollBy(0,0.88*window.innerHeight);

And with arrow keys:
' Up (arrow)
EVENTS TYPE=KEYPRESS SELECTOR=* KEYS="[38,38,38,38,38,38,38]"

' Down (arrow)
EVENTS TYPE=KEYPRESS SELECTOR=* KEYS="[40,40,40,40,40,40,40]"
Join 9kw.eu Captcha Service now and let your iMacros continue downloads and scripts while you sleep. - Custom iMacros? Contact me! :idea:
techimac
Posts: 482
Joined: Fri Feb 20, 2015 9:27 pm

Re: SCROLL DOWN not working on twitter.com

Post by techimac » Sat Apr 16, 2016 8:42 pm

Thanks but not working in twitter.
Available for custom iim, javascript iMacros scripts
User avatar
thecoder2012
Posts: 446
Joined: Sat Aug 15, 2015 5:14 pm
Location: Internet
Contact:

Re: SCROLL DOWN not working on twitter.com

Post by thecoder2012 » Sat Apr 16, 2016 8:53 pm

techimac wrote:Thanks but not working in twitter.
Twitterlink? Firefox and iMacros version?
I have tested it with twitter (9kw.eu twitter page) with firefox 45.0.1 and imacros 8.9.6 under windows without any problem with page down or arrow down key(s).
Join 9kw.eu Captcha Service now and let your iMacros continue downloads and scripts while you sleep. - Custom iMacros? Contact me! :idea:
techimac
Posts: 482
Joined: Fri Feb 20, 2015 9:27 pm

Re: SCROLL DOWN not working on twitter.com

Post by techimac » Sat Apr 16, 2016 9:12 pm

Available for custom iim, javascript iMacros scripts
User avatar
thecoder2012
Posts: 446
Joined: Sat Aug 15, 2015 5:14 pm
Location: Internet
Contact:

Re: SCROLL DOWN not working on twitter.com

Post by thecoder2012 » Sat Apr 16, 2016 10:03 pm

techimac wrote:https://twitter.com/search?f=users&vert ... t&src=typd
Firefox 45.0.2
iMacros 8.9.6
System? Any other addons in Firefox active or anything else?
I have updated to Firefox 45.0.2 but no problem with page down, iMacros 8.9.6 and your twitterlink. Tested with Windows 8.1 and Windows Server 2008.
Join 9kw.eu Captcha Service now and let your iMacros continue downloads and scripts while you sleep. - Custom iMacros? Contact me! :idea:
techimac
Posts: 482
Joined: Fri Feb 20, 2015 9:27 pm

Re: SCROLL DOWN not working on twitter.com

Post by techimac » Sat Apr 16, 2016 10:07 pm

I have addons installed.
I will try later on fresh firefox installation.
Available for custom iim, javascript iMacros scripts
User avatar
thecoder2012
Posts: 446
Joined: Sat Aug 15, 2015 5:14 pm
Location: Internet
Contact:

Re: SCROLL DOWN not working on twitter.com

Post by thecoder2012 » Sun Apr 17, 2016 3:18 pm

techimac wrote:I have addons installed.
I will try later on fresh firefox installation.
Which addons?
Join 9kw.eu Captcha Service now and let your iMacros continue downloads and scripts while you sleep. - Custom iMacros? Contact me! :idea:
techimac
Posts: 482
Joined: Fri Feb 20, 2015 9:27 pm

Re: SCROLL DOWN not working on twitter.com

Post by techimac » Sun Apr 17, 2016 3:21 pm

Video Download Helper
Roboform
Available for custom iim, javascript iMacros scripts
techimac
Posts: 482
Joined: Fri Feb 20, 2015 9:27 pm

Re: SCROLL DOWN not working on twitter.com

Post by techimac » Sat May 30, 2020 1:03 am

Code: Select all

URL GOTO=javascript:((function(){window.scrollTo(0, document.body.scrollHeight); }, 2000)}))();
can anyone fix this code?
Available for custom iim, javascript iMacros scripts
Post Reply