RecyclerViewActions在Espresso Android Testing中返回NoMatchingViewException

时间:2018-06-14 08:29:37

标签: android android-studio android-recyclerview android-espresso

我使用这行代码在RecyclerView 0点击position列表中点击。

onView(withId(R.id.rv)).perform(RecyclerViewActions.actionOnItemAtPosition(0, click()));

但它不起作用并返回NoMatchingViewException

但是,当我在TextView(位于RecyclerView布局内)上执行点击操作时,它的工作和测试正在通过,如下面的代码行所示,

    onView(allOf(result(withId(R.id.tv), 0), isDisplayed())).perform(click());

我是否正确使用RecyclerViewActions,如何解决此问题?

0 个答案:

没有答案