com.applitools.eyes.selenium.ElementReference 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 org.openqa.selenium.WebElement;
/**
* element reference
*/
public class ElementReference implements PathNodeValue {
private WebElement element;
public ElementReference() {
}
public ElementReference(WebElement element) {
this.element = element;
}
public WebElement getElement() {
return element;
}
public void setElement(WebElement element) {
this.element = element;
}
}