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 br.jus.trt.lib.common_tests.arquillian.graphene.findby.ByJsfId.java

/**
 * Permite procurar elementos usando o id do components JSF.
 *
 * @author David Vieira
 */
@ImplementedBy(className = "br.jus.trt.lib.common_tests.arquillian.graphene.findby.ByJsfIdImpl")

From source file com.arcbees.test.ByDebugId.java

public class ByDebugId extends By {
    private final String debugId;

    public static By id(String debugId) {
        return new ByDebugId(debugId);
    }

From source file com.google.android.testing.nativedriver.common.AndroidNativeBy.java

/**
 * Supplies finding strategies that are useful in Android Native applications.
 * The strategies are supplied in the same way {@code By} supplies the standard
 * strategies, such as {@link By#id(String)}. The following code uses the
 * "by text" strategy of {@code AndroidNativeBy} to find all elements with the
 * text {@code "OK"}:

From source file com.google.iphone.testing.nativedriver.client.By.java

/**
 * Supplies finding strategies that are useful in iOS Native applications.
 * The strategies are supplied in the same way {@code By} supplies the standard
 * strategies, such as {@link org.openqa.selenium.By#id(String)}.
 * 
 * @author Tomohiro Kaizu

From source file com.gwtplatform.carstore.cucumber.util.ByDebugId.java

public class ByDebugId extends By {
    private final String debugId;

    public static By id(String debugId) {
        return new ByDebugId(debugId);
    }

From source file com.lohika.alp.flexpilot.ByIdOrName.java

public class ByIdOrName extends By {
    private By idFinder;
    private By nameFinder;
    private String idOrName;

    public ByIdOrName(String idOrName) {

From source file com.mengge.MobileBy.java

@SuppressWarnings("serial")
public abstract class MobileBy extends By {

    private final String locatorString;

    protected MobileBy(String locatorString) {

From source file com.mengge.pagefactory.bys.ContentMappedBy.java

public class ContentMappedBy extends By {
    private final Map<ContentType, By> map;

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

From source file com.orasi.web.by.angular.ByNG.java

/**
 * Mechanism used to locate elements within a document. In order to create your own locating
 * mechanisms, it is possible to subclass this class and override the protected methods as required,
 * though it is expected that that all subclasses rely on the basic finding mechanisms provided
 * through static methods of this class:
 *

From source file com.orasi.web.by.common.ByCommon.java

/**
 * Mechanism used to locate elements within a document. In order to create your own locating
 * mechanisms, it is possible to subclass this class and override the protected methods as required,
 * though it is expected that that all subclasses rely on the basic finding mechanisms provided
 * through static methods of this class:
 *