Android Espresso如何验证文本在回收站视图中不存在?

时间:2016-08-03 21:12:44

标签: android-testing android-espresso

我有子视图的回收视图。我想验证回收器视图中是否存在文本,而无需滚动它。

目前的解决方案有效,但我认为太过苛刻。

@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"))));
}

0 个答案:

没有答案