How to scroll a page which lazy loads it’s data to the actual end of it
Sometimes you need to get to the end of some list that is loading it’s items using javascript (known as lazy loading) like list of an…
This is a cross-post of my Medium post.
Sometimes you need to get to the end of some list that is loading it’s items using javascript (known as lazy loading) like list of an account’s likes in twitter mobile (e.g. https://mobile.twitter.com/SwiftOnSecurity/likes). For this matter, this code (written in chrome’s developer dashboard’s console)
scrollToBottom
scrolls to page to bottom using window.scrollTo
method and I simply call it each 100ms indefinitely :)
That’s it. Now you can scroll all the pages you want to reach to their end.