Example usage for org.openqa.selenium By subclass-usage

List of usage examples for org.openqa.selenium By subclass-usage

Introduction

In this page you can find the example usage for org.openqa.selenium By subclass-usage.

Usage

From source file com.seleniumtests.uipage.ByC.java

public class ByC extends By {

    @Override
    public List<WebElement> findElements(SearchContext context) {
        return null;
    }

From source file com.vaadin.testbench.By.java

public abstract class By extends org.openqa.selenium.By {

    /**
     * Finds an element using a Vaadin selector
     * 
     * @param vaadinSelector

From source file de.codecentric.zucchini.web.vars.ParameterizedBy.java

/**
 * This class provides a simple mechanism to create {@link org.openqa.selenium.By} instances using variables (hence
 * parameterized).
 */
public class ParameterizedBy extends By implements VariablesAware {
    private final Class<? extends By> byClass;

From source file de.tntinteractive.portalsammler.engine.ByPartialButtonText.java

public final class ByPartialButtonText extends By {

    private final String text;

    public ByPartialButtonText(final String text) {
        this.text = text;

From source file fw.basic.wrap.ExtBy.java

public class ExtBy extends By {

    private final String selector;

    public static By sizzle(final String selector) {
        return new ExtBy(selector);

From source file io.appium.java_client.pagefactory.bys.ContentMappedBy.java

public class ContentMappedBy extends By {
    private static final String NATIVE_APP_PATTERN = "NATIVE_APP";
    private final Map<ContentType, By> map;

    public ContentMappedBy(Map<ContentType, By> map) {
        this.map = map;

From source file io.github.blindio.prospero.core.utils.BySeleneseLocator.java

public class BySeleneseLocator extends By {

    /**
     * <h3><a name="locators"></a>Element Locators</h3>
     * <p>
     * Element Locators tell Selenium which HTML element a command refers to.

From source file io.github.seleniumquery.by.SeleniumQueryBy.java

/**
 * This By is a combination of the By.xpath and By.css, where the CSS3, XPath, jQuery/Sizzle and others
 * selectors are supported.
 *
 * @author acdcjunior
 * @since 0.9.0

From source file jhc.redsniff.wicket.ByWicketPath.java

public final class ByWicketPath extends By {

    private final String xpathExpression;
    private final String wicketPath;

    /**

From source file net.codestory.simplelenium.selectors.ByCssSelectorOrByName.java

public class ByCssSelectorOrByName extends By implements Serializable {
    private static final long serialVersionUID = -3910258723099459239L;

    private final String selector;

    public ByCssSelectorOrByName(String selector) {