Finding a view with onView

suggest change

With the ViewMatchers you can find view in the current view hierarchy.

To find a view, use the onView() method with a view matcher which selects the correct view. The onView() methods return an object of type ViewInteraction.

For example, finding a view by its R.id is as simple as:

onView(withId(R.id.my_view))

Finding a view with a text:

onView(withText("Hello World"))

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents