public enum EventSource extends java.lang.Enum<EventSource>
| Enum Constant and Description |
|---|
ASSERTION
Event comes from a assertion.
|
FRAGMENT
Event comes from a fragment.
|
PAGE
Event comes from a page.
|
TEST
Event comes from a test.
|
WEBDRIVER_AFTER
Event comes from a webdriver or browser.
|
WEBDRIVER_BEFORE
Event comes from a webdriver or browser.
|
WEBELEMENT_AFTER
Event comes form a
WebElement, after the action. |
WEBELEMENT_BEFORE
Event comes form a
WebElement, before the action. |
WIDGET
Event comes from a widget.
|
| Modifier and Type | Method and Description |
|---|---|
static EventSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventSource WEBELEMENT_BEFORE
WebElement, before the action.public static final EventSource WEBELEMENT_AFTER
WebElement, after the action.public static final EventSource WIDGET
public static final EventSource FRAGMENT
public static final EventSource PAGE
public static final EventSource WEBDRIVER_BEFORE
public static final EventSource WEBDRIVER_AFTER
public static final EventSource ASSERTION
public static final EventSource TEST
public static EventSource[] values()
for (EventSource c : EventSource.values()) System.out.println(c);
public static EventSource valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2017 PPI AG. All rights reserved.