Can anybody please help me out to automate scroll down functionality with WebDriver using Java?
In my case, For yahoo mail "Sign In"
is getting displayed (visible) once I scroll down the mouse vertically.
Can anybody please help me out to automate scroll down functionality with WebDriver using Java?
In my case, For yahoo mail "Sign In"
is getting displayed (visible) once I scroll down the mouse vertically.
Scrolling to an Element of a page:
If you are not sure about the height of the page and you are gonna scroll down to the down part of the page you can find the main frame of that page and use following code to scroll down without using scroll or scrollBy
This will automatically go to the far down of the page. You can see an example here.
Scrolling up should be as below:
You can scroll down vertically by using the following code:
Similarly, it is also possible to scroll up by changing y coordinate as negative:
You can also use the following code: For scroll down:
For scroll up: