Skip to content

Examples of usage

Glib Briia edited this page Jan 22, 2017 · 14 revisions

Below are some basic examples of usage:

  • Take screenshot and save to default location (./screenshots/):
  Shutterbug.shootPage(driver).save();
  • Take screenshot and specify location to save to:
  Shutterbug.shootPage(driver).save("C:\\testing\\screenshots\\");
  • Take screenshot and scroll in both directions (Will make full page screenshot in Chrome):
  Shutterbug.shootPage(driver, ScrollStrategy.BOTH_DIRECTIONS).save();
  • Take screenshot and scroll in both directions (Will make full page screenshot in Chrome) and use devicePixelRatio - for retina displays:
  Shutterbug.shootPage(driver, ScrollStrategy.BOTH_DIRECTIONS,500,true).save();
  • Take screenshot of specified WebElement only:
  Shutterbug.shootElement(driver, element).save();
  • Compare screenshot taken with the expected one with specified deviation rate:
  Shutterbug.shootPage(driver).equals(otherImage,0.1);
  • Compare screenshot taken with the expected one with specified deviation rate and create new image with differences highlighted:
  Shutterbug.shootPage(driver).equalsWithDiff(otherImage,pathToNewImage,0.1);
  • Compare screenshot taken with the expected one and create new image with differences highlighted:
  Shutterbug.shootPage(driver).equalsWithDiff(otherImage,pathToNewImage);
  • Take screenshot and save thumbnail as well (with specified resize ratio):
  Shutterbug.shootPage(driver).withThumbnail(0.4).save();

To demonstrate how it all can be pieced together the example follows:

    System.setProperty("webdriver.chrome.driver", "your path to  chromedriver.exe");
        WebDriver driver = new ChromeDriver();
        driver.get("https://www.google.com/imghp");
        WebElement googleLogo = driver.findElement(By.id("hplogo"));
        WebElement searchBtn = driver.findElement(By.id("sblsbb"));
        WebElement searchBox = driver.findElement(By.className("gsfi"));

        searchBox.sendKeys("Testing");

        Shutterbug.shootPage(driver)
                .blur(searchBox)
                .highlight(searchBtn)
                .monochrome(googleLogo)
                .highlightWithText(googleLogo, Color.blue, 3, "Monochromed logo",Color.blue, new Font("SansSerif", Font.BOLD, 20))
                .highlightWithText(searchBox, "Blurred secret words")
                .withTitle("Google home page - " + new Date())
                .withName("home_page")
                .withThumbnail(0.7)
                .save("C:\\testing\\screenshots\\");
        driver.quit();
Clone this wiki locally