io.appium.java_client.generic.searchcontext.GenericSearchContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client for Appium Mobile Webdriver
package io.appium.java_client.generic.searchcontext;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import java.util.List;
public interface GenericSearchContext {
List findElements(By by);
T findElement(By by);
}