public static enum Element.LocatorType extends Enum<Element.LocatorType>
| Enum Constant and Description |
|---|
accessibiliy |
classType |
css |
id |
linkText |
mobileClass |
name |
partialLinkText |
tagName |
xpath |
| Modifier and Type | Method and Description |
|---|---|
static Element.LocatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Element.LocatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Element.LocatorType css
public static final Element.LocatorType xpath
public static final Element.LocatorType id
public static final Element.LocatorType classType
public static final Element.LocatorType accessibiliy
public static final Element.LocatorType mobileClass
public static final Element.LocatorType name
public static final Element.LocatorType tagName
public static final Element.LocatorType linkText
public static final Element.LocatorType partialLinkText
public static Element.LocatorType[] values()
for (Element.LocatorType c : Element.LocatorType.values()) System.out.println(c);
public static Element.LocatorType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.