INNER CODE UNIT · Java
className
appium/java-client · src/main/java/io/appium/java_client/AppiumBy.java:129
public static By className(final String selector) {
return new ByClassName(selector);
}
/**
* For IOS the element name.
* For Android it is the resource identifier.
*
* @param selector element id
* @return an instance of {@link ById}
*/
public static By id(final String selector) {
return new ById(selector);
}
/**
* For IOS the element name.
* For Android it is the resource identifier.