com.applitools.eyes.CssTranslatePositionMemento 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 CssTranslatePositionProvider} instances.
*/
class CssTranslatePositionMemento extends PositionMemento {
private final String transform;
/**
*
* @param transform The current transform string.
*/
public CssTranslatePositionMemento(String transform) {
this.transform = transform;
}
public String getTransform() {
return transform;
}
}