All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.applitools.eyes.selenium.ElementReference Maven / Gradle / Ivy

There is a newer version: 5.73.0
Show newest version
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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy