我有ListView与图片和文字.当我尝试点击项目时,我收到错误
android.support.test.espresso.AmbiguousViewMatcherException: 'with id: com.cifrasoft.telefm:id/cardsGridView' matches multiple views in the hierarchy. Problem views are marked with '****MATCHES****' below.
我使用以下代码:
onData(hasToString(startsWith("Item Text"))) .inAdapterView(withId(R.id.cardsGridView)) .perform(click());
我可以使用适配器的位置单击ListView,没有匹配或startWith?
解决方法
尝试使用atPosition().例如
onData(hasToString(startsWith("Item Text"))) .inAdapterView(withId(R.id.cardsGridView)).atPosition(0) .perform(click());
如果索引为0,则会单击找到的第一个匹配视图.