com.applitools.eyes.selenium.TargetPathLocator 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;
/**
* 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;
}
}