How to scroll the webpage to the top of the page.
I know scrolling the page to the bottom is:
window.scrollTo(0,document.body.scrollHeight) <
window.scrollTo(0,document.body.scrollHeight)
To scroll to the top of the page
((JavascriptExecutor) driver).executeScript("window.scrollTo(document.body.scrollHeight, 0)");
To scroll to the end of the page
((JavascriptExecutor) driver).executeScript("window.scrollTo(0,document.body.scrollHeight)");