Skip to content
Advertisement

Selenium: Scroll till end of the page

Selenium:

I am new to WebDriverJS. I have tried this approach in Java.

JavaScript

but I am facing problem in webdriverjs while iterating the loop.

JavaScript

In my code I have hardcoded for loop to iterate until 50 times and I want to quit/break the loop when the scroll height is reached to end. In this approach, I want to remove hardcode like java-code because I don’t know how many times to iterate for other applications whose scroll is kept on increasing dynamically. For example, Facebook application, Yahoo News…

Advertisement

Answer

Scrolling to the bottom of a dynamic page can be challenging depending on how it is implemented by the page.

First you’ll have to find the container with the scrollbar since it can be different from the one linked to window.scrollTo.

Then scroll the container by increasing scrollTop until the scrollHeight becomes steady with no pending requests. To check if there are pending requests, either evalute jQuery.active if the page has JQuery or hook XMLHttpRequest to monitor the calls on send.

Here is an example using on a generic function to scroll to the bottom of the page a number of times or until the end:

JavaScript
JavaScript

Or by scrolling until the height no longer increases during a specific time (5 seconds here) :

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement