I am using FirefoxDriver webdriver. The page that loads in Firefox window is a large page and I want to scroll that page using selenium.
I want to know how this can be d
Use this code to scroll single page down
Actions actions = new Actions(driver); actions.sendKeys(Keys.BACK_SPACE).perform();