Skip to content

Instantly share code, notes, and snippets.

@pragmatictesters
Last active December 28, 2018 17:43
Show Gist options
  • Save pragmatictesters/cf1daf9294298039e963306556815ba4 to your computer and use it in GitHub Desktop.
Save pragmatictesters/cf1daf9294298039e963306556815ba4 to your computer and use it in GitHub Desktop.
Selenium WebDrive Examples - Take a Screenshot with a time stam
package com.pragmatic.selenium.hrm.examples;
import com.github.javafaker.Faker;
import io.github.bonigarcia.wdm.WebDriverManager;
import org.apache.commons.io.FileUtils;
import org.openqa.selenium.By;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import java.io.File;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
/**
* Created by Janesh Kodikara on 2018-12-28
**/
public class TakeScreenshotExample {
private static final String PROJECT_DIR = "/Users/hansi/IdeaProjects/ptlhrm-git/screens/";
WebDriver driver;
Faker faker;
@BeforeClass
public void beforeClass(){
faker=new Faker();
}
@BeforeTest
public void beforeTest(){
WebDriverManager.chromedriver().setup();
driver = new ChromeDriver();
driver.manage().window().fullscreen();
driver.navigate().to("http://hrm.pragmatictestlabs.com");
}
@Test
public void testTakeScreenshot(){
driver.findElement(By.xpath("//input[@id='txtUsername']")).sendKeys("Admin");
driver.findElement(By.xpath("//input[@id='txtPassword']")).sendKeys("Ptl@#321");
takeScreenshot("HomePageWithInput");
}
public void takeScreenshot(String file){
String timeStamp= faker.date().future(1, TimeUnit.SECONDS).toString();
File srcFile =((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE);
try {
FileUtils.copyFile(srcFile, new File(PROJECT_DIR + file + "-" +timeStamp + ".png"));
} catch (IOException e) {
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment