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-java4 Show documentation
Show all versions of eyes-selenium-java4 Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
The newest version!
package com.applitools.eyes.selenium;
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;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy