Espresso:通过指定父视图避免 AmbiguousViewMatcherException

Espresso: avoid AmbiguousViewMatcherException by specifying the parent view

onView(withId(R.id.feeding_name)).check(matches(isDisplayed())); 导致 AmbiguousViewMatcherException。

由于屏幕上有多个片段,id“feeding_name”匹配多个视图。

我想知道,是否有任何方法可以指定视图的父视图,以便我可以执行类似 onView(withIdAndParentId(R.id.feeding_name, R.id.fragment_show_feeding)).check(matches(isDisplayed()));

的操作

您可以尝试将匹配器与 allOf 组合,例如:

onView(allOf(withId(R.id.feeding_name), withParent(withId(R.id.fragment_show_feeding))))
    .check(matches(isDisplayed()));