I'm attempting to do: call on a textview activity.
My issue is I can't get textview work using espresso.
My Java class
onView(withText("Latter Glory Ministries")).check(matches(isDisplayed()));
Throws this exception:
android.support.test.espresso.AmbiguousViewMatcherException: '(with text: is "Latter Glory Ministries" and view has effective visibility=VISIBLE)' matches multiple views in the hierarchy.
Problem views are marked with '****MATCHES****' below.
Gradle
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.0'
androidTestCompile 'com.android.support.test:testing-support-lib:0.1'
Thanks for your ideas!