【发布时间】:2015-08-06 13:11:57
【问题描述】:
我正在尝试测试使用 ViewPager 的应用程序。每个页面都包含片段,但这些片段并不总是可见的。我想检查当前可见页面中片段的可见性。
onView(withId(R.id.container_weather))
.check(matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE)));
但问题是 espresso 看起来是所有页面,而不仅仅是当前页面,我收到以下错误:
android.support.test.espresso.AmbiguousViewMatcherException: 'with id: eu.airpatrol.android:id/container_weather' 匹配层次结构中的多个视图...
【问题讨论】:
标签: android automated-tests android-espresso