com.applitools.eyes.selenium.SizeAndBorders 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.RectangleSize;
public class SizeAndBorders {
private RectangleSize size;
private Borders borders;
public SizeAndBorders(int width, int height, int left, int top, int right, int bottom) {
size = new RectangleSize(width, height);
borders = new Borders(left, top, right, bottom);
}
public RectangleSize getSize() {
return size;
}
public Borders getBorders() {
return borders;
}
}