我是Android测试的新手。如何使用Espresso Framework为RecyclerView编写测试用例。我的RecyclerView有一个点击监听器,当点击一个项目时,它将意图传递给另一个活动。请帮我写一下测试用例。
答案 0 :(得分:1)
单击RecyclerView中的项目:
详情请见Espresso RecyclerView testing
onView(withId(R.id.scroll_view)).perform(RecyclerViewActions.actionOnItemAtPosition(3, click()));
检查是否发送了Intent:
// to the "phone" activity has been sent.
intended(toPackage("com.android.phone"));
上查看更多内容