Android Espresso ListView点击项目

前端之家收集整理的这篇文章主要介绍了Android Espresso ListView点击项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有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,则会单击找到的第一个匹配视图.

原文链接:https://www.f2er.com/android/315682.html

猜你在找的Android相关文章