GeneralClickAction
public final class GeneralClickAction
extends Object
implements ViewAction
java.lang.Object |
↳ |
android.support.test.espresso.action.GeneralClickAction |
Enables clicking on views.
Summary
Public methods |
Matcher<View> |
getConstraints() A mechanism for ViewActions to specify what type of views they can operate on. |
String |
getDescription() Returns a description of the view action. |
void |
perform(UiController uiController, View view) Performs this action on the given view. |
Inherited methods |
From class java.lang.Object
Object |
clone() |
boolean |
equals(Object arg0) |
void |
finalize() |
final Class<?> |
getClass() |
int |
hashCode() |
final void |
notify() |
final void |
notifyAll() |
String |
toString() |
final void |
wait(long arg0, int arg1) |
final void |
wait(long arg0) |
final void |
wait() |
|
From interface android.support.test.espresso.ViewAction
abstract Matcher<View> |
getConstraints() A mechanism for ViewActions to specify what type of views they can operate on. |
abstract String |
getDescription() Returns a description of the view action. |
abstract void |
perform(UiController uiController, View view) Performs this action on the given view. |
|
Public constructors
GeneralClickAction
GeneralClickAction (Tapper tapper,
CoordinatesProvider coordinatesProvider,
PrecisionDescriber precisionDescriber)
Parameters |
tapper |
Tapper
|
coordinatesProvider |
CoordinatesProvider
|
precisionDescriber |
PrecisionDescriber
|
GeneralClickAction
GeneralClickAction (Tapper tapper,
CoordinatesProvider coordinatesProvider,
PrecisionDescriber precisionDescriber,
ViewAction rollbackAction)
Parameters |
tapper |
Tapper
|
coordinatesProvider |
CoordinatesProvider
|
precisionDescriber |
PrecisionDescriber
|
rollbackAction |
ViewAction
|
Public methods
getConstraints
Matcher<View> getConstraints ()
A mechanism for ViewActions to specify what type of views they can operate on. A ViewAction can demand that the view passed to perform meets certain constraints. For example it may want to ensure the view is already in the viewable physical screen of the device or is of a certain type.
Returns |
Matcher<View> |
a Matcher that will be tested prior to calling perform. |
getDescription
String getDescription ()
Returns a description of the view action. The description should not be overly long and should fit nicely in a sentence like: "performing %description% action on view with id ..."
perform
void perform (UiController uiController,
View view)
Performs this action on the given view.
Parameters |
uiController |
UiController : the controller to use to interact with the UI. |
view |
View : the view to act upon. never null. |