Search in sources :

Example 1 with IndentCropper

use of ru.yandex.qatools.ashot.cropper.indent.IndentCropper in project ashot by yandex-qatools.

the class CroppersTest method testElementOutsideImageIndentCropper.

@Test
public void testElementOutsideImageIndentCropper() throws Exception {
    Screenshot screenshot = new IndentCropper(10).cropScreenshot(IMAGE_A_SMALL, OUTSIDE_IMAGE);
    assertThat(screenshot.getImage(), ImageTool.equalImage(loadImage("img/expected/outside_ic.png")));
}
Also used : Screenshot(ru.yandex.qatools.ashot.Screenshot) IndentCropper(ru.yandex.qatools.ashot.cropper.indent.IndentCropper) Test(org.junit.Test)

Example 2 with IndentCropper

use of ru.yandex.qatools.ashot.cropper.indent.IndentCropper in project ashot by yandex-qatools.

the class CroppersTest method testElementInsideImageIndentCropperWithFilter.

@Test
public void testElementInsideImageIndentCropperWithFilter() throws Exception {
    Screenshot screenshot = new IndentCropper().addIndentFilter(IndentFilerFactory.blur()).addIndentFilter(IndentFilerFactory.monochrome()).cropScreenshot(IMAGE_A_SMALL, INSIDE_IMAGE);
    assertThat(screenshot.getImage(), ImageTool.equalImage(loadImage("img/expected/inside_icf.png")));
}
Also used : Screenshot(ru.yandex.qatools.ashot.Screenshot) IndentCropper(ru.yandex.qatools.ashot.cropper.indent.IndentCropper) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)2 Screenshot (ru.yandex.qatools.ashot.Screenshot)2 IndentCropper (ru.yandex.qatools.ashot.cropper.indent.IndentCropper)2