Horje
how to take a screenshot in selenium Code Example
how to take a screenshot in selenium
Java
Yes, it is possible. The following example is in Java:

WebDriver driver = new FirefoxDriver();
driver.get("http://www.google.com/");
File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
// Now you can do whatever you need to do with it, for example copy somewhere
FileUtils.copyFile(scrFile, new File("c:\\tmp\\screenshot.png"));




Whatever

Related
histogram r code Code Example histogram r code Code Example
sleep definition Code Example sleep definition Code Example
google.com Code Example google.com Code Example
what is bootstrap Code Example what is bootstrap Code Example
goombah Code Example goombah Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7