java.lang.Object | |
↳ | android.support.test.espresso.action.OpenLinkAction |
Invokes onClick of a link within a TextView (made with Linkify or via another method). Why not issue a real click event to the screen? Unfortunately, it does not seem to be possible (at least using public APIs) to determine the location of the link on the screen.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
A mechanism for ViewActions to specify what type of views they can operate on.
| |||||||||||
Returns a description of the view action.
| |||||||||||
Performs this action on the given view.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.support.test.espresso.ViewAction
|
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.
Matcher
that will be tested prior to calling perform.
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 ..."
Performs this action on the given view.
uiController | the controller to use to interact with the UI. |
---|---|
view | the view to act upon. never null. |