I am trying to take full page (without any scroll bar) screenshots using Selenium in Java. My code below is working perfect in Firefox 29. I tested the same code in Chrome 35 and it is taking partial screenshot (not full page, screen with scroll bar) and IE8 is not supporting screen shots with Selenium Drive.
File scrFile = ((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE);
FileUtils.copyFile(scrFile, new File("C://screenshot//" + image1.jpg));