
org.finra.jtaf.ewd.widget.element.EByXpath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtaf-extwebdriver Show documentation
Show all versions of jtaf-extwebdriver Show documentation
ExtWebDriver is an enhancement to the WebDriver API, with features such as widget library, session management and extended functions
package org.finra.jtaf.ewd.widget.element;
import org.openqa.selenium.By;
/**
* {@link StringLocatorAwareBy} implementation of {@link ByXPath}.
* @author niels
*
*/
public class EByXpath extends StringLocatorAwareBy {
public EByXpath(String locator) {
super(locator, By.xpath(locator));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy