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

org.finra.jtaf.ewd.widget.element.EByXpath Maven / Gradle / Ivy

Go to download

ExtWebDriver is an enhancement to the WebDriver API, with features such as widget library, session management and extended functions

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