Android APIs
public final class

TypeTextAction

extends Object
implements ViewAction
java.lang.Object
   ↳ android.support.test.espresso.action.TypeTextAction

Class Overview

Enables typing text on views.

Summary

Public Constructors
TypeTextAction(String stringToBeTyped)
Constructs TypeTextAction with given string.
TypeTextAction(String stringToBeTyped, boolean tapToFocus)
Constructs TypeTextAction with given string.
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.
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.support.test.espresso.ViewAction

Public Constructors

public TypeTextAction (String stringToBeTyped)

Constructs TypeTextAction with given string. If the string is empty it results in no-op (nothing is typed). By default this action sends a tap event to the center of the view to attain focus before typing.

Parameters
stringToBeTyped String To be typed by TypeTextAction

public TypeTextAction (String stringToBeTyped, boolean tapToFocus)

Constructs TypeTextAction with given string. If the string is empty it results in no-op (nothing is typed).

Parameters
stringToBeTyped String To be typed by TypeTextAction
tapToFocus indicates whether a tap should be sent to the underlying view before typing.

Public Methods

public 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
  • a Matcher that will be tested prior to calling perform.

public 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 ..."

public void perform (UiController uiController, View view)

Performs this action on the given view.

Parameters
uiController the controller to use to interact with the UI.
view the view to act upon. never null.