com.applitools.eyes.ElementPositionMemento Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java-jersey1x Show documentation
Show all versions of eyes-selenium-java-jersey1x Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
package com.applitools.eyes;
/**
* Encapsulates state for {@link ElementPositionProvider} instances.
*/
class ElementPositionMemento extends PositionMemento {
private final Location position;
/**
*
* @param l The current location to be saved.
*/
public ElementPositionMemento(Location l) {
position = new Location(l);
}
public int getX() {
return position.getX();
}
public int getY() {
return position.getY();
}
}