com.applitools.eyes.selenium.BoundsAndBorders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java5 Show documentation
Show all versions of eyes-selenium-java5 Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
package com.applitools.eyes.selenium;
import com.applitools.eyes.Borders;
import com.applitools.eyes.Region;
public class BoundsAndBorders {
private final Region bounds;
private final Borders borders;
public BoundsAndBorders(Region bounds, Borders borders) {
this.bounds = bounds;
this.borders = borders;
}
public Region getBounds() {
return bounds;
}
public Borders getBorders() {
return borders;
}
}