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

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

There is a newer version: 5.73.0
Show newest version
package com.applitools.eyes.selenium;

/**
 * target path locator
 */
public class TargetPathLocator {
  protected TargetPathLocator parent;
  protected PathNodeValue value;

  public TargetPathLocator() {
  }

  public TargetPathLocator(TargetPathLocator parent, PathNodeValue value) {
    this.parent = parent;
    this.value = value;
  }

  public PathNodeValue getValue() {
    return value;
  }

  public TargetPathLocator getParent() {
    return parent;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy