Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Currently I'm trying to capture a screenshot using the Selenium WebDriver but I can only obtain the whole page screen shot. However, what I wanted is just to capture a part of the page or perhaps just on specific element based on id. (For example, i wish to capture the picture with image id = "Butterfly")

Any way to capture a screenshot by selected item or element?

share|improve this question
AFAIK, the facility is only to capture the whole page. We do not have screenshot function that takes element id or name as input. – HemChe Dec 12 '12 at 6:21
Anyone could tell me what is the method call for BUfferedImage in c#? I could not found any similar method related to this. – fj123 Dec 13 '12 at 2:47

1 Answer

up vote 1 down vote accepted

We can get the element screenshot by cropping entire page screenshot as below:

driver.get("http://www.google.com");
WebElement ele = driver.findElement(By.id("hplogo"));   
//Get entire page screenshot
File screenshot = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
BufferedImage  fullImg = ImageIO.read(screenshot);
//Get the location of element on the page
Point point = ele.getLocation();
//Get width and height of the element
int eleWidth = ele.getSize().getWidth();
int eleHeight = ele.getSize().getHeight();
//Crop the entire page screenshot to get only element screenshot
BufferedImage eleScreenshot= fullImg.getSubimage(point.getX(), point.getY(), eleWidth, eleHeight);
ImageIO.write(eleScreenshot, "png", screenshot);
//Copy the element screenshot to disk
FileUtils.copyFile(screenshot, new File("c:\\images\\GoogleLogo_screenshot.png"));
share|improve this answer
Thank you for reply. However, why my webdriver is different with your one. it use IWebDriver,ITakeScreenshot and there is no OutputType.FILE and BufferedImage... am i using the outdated version of webdriver selenium? – fj123 Dec 12 '12 at 7:32
Are you using C# webdriver binding? – Surya Dec 12 '12 at 7:40
Yes,i think so. Previously i was using RC and i just change to use web driver lately. – fj123 Dec 12 '12 at 7:42
This implementation is for Java binding. This concept should work for C# also. But I am not much aware of C# language. You need to use C# equivalent libraries (BufferedImage, ImageIO...) – Surya Dec 12 '12 at 9:32
Ohh i got it. Btw , thank you very much for providing me a such good example to refer. – fj123 Dec 12 '12 at 9:35
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.