我有子视图的回收视图。我想验证回收器视图中是否存在文本,而无需滚动它。
目前的解决方案有效,但我认为太过苛刻。
@Test(expected = PerformException.class)
public void verifyUserIsNotPresentInParticipantsList() {
onView(withId(R.id.fab)).perform(click());
onView(withId(R.id.recyclerView)).perform(scrollTo(hasDescendant(withText("My Text"))));
}