随着Android 5.x的普及,它的一些特性也在越来越多的APP中使用到,其中RecyclerView就是其中一个。RecyclerView 是一个像 ListView、GridVIew 那样呈现数据集合的 UI 组件,实际上它的目的是要替换掉这两个组件。从测试的角度上来看我们感兴趣的有是 RecyclerView 不是一个 AdapterView,这意味着你不能使用 onData() 去跟你的 list items 交互。
幸运的是,有一个叫 RecyclerViewActions 的类提供了简单的 API 给我们操作 RecyclerView。RecyclerViewActions 是 espresso-contrib库的一部分,这个库的依赖可以在 build.gradle 中添加:
dependencies {
// ...
androidTestCompile('com.android.support.test.espresso:espresso-contrib:2.0');
}
但是这样子的话。gradle就会出现报错了,出现一些依赖关系的冲突,所以我们需要去除一些重复的依赖关系。
dependencies {
// ...
androidTestCompile('com.android.support.test.espresso:espresso-contrib:2.0') {
exclude group: 'com.android.support', module: 'appcompat'
exclude group: 'com.android.support', module: 'support-v4'
exclude module: 'recyclerview-v7'
}
}
花了点时间,修改了之前的ListView形式的Book列表,改成了RecyclerView列表的形式。如图:
显示实际上跟ListView没有很大的区别,但是问题前面已经说了,RecyclerView实际上并不是AdapterView,所以说我们不能够使用之前onData的方式。
测试
这个时候就需要引用到一个 RecyclerViewActions
,我们首先看看RecyclerViewActions
它到底是什么吧。
/**
* {@link ViewAction}s to interact {@link RecyclerView}. RecyclerView works differently than
* {@link AdapterView}. In fact, RecyclerView is not an AdapterView anymore, hence it can't be used
* in combination with {@link Espresso#onData(Matcher)}.
*
* <p>
* To use {@link ViewAction}s in this class use {@link Espresso#onView(Matcher)} with a
* {@link Matcher} that matches your {@link RecyclerView}, then perform a {@link ViewAction} from
* this class.
* </p>
**/
从上面的解释 我们就可以理解,RecyclerViewActions 就是为了针对RecyclerView才出来的。
我们主要还是看看如何进行测试吧。
1,点击RecyclerView列表中第四个item
onView(withId(R.id.recyclerView)).perform(RecyclerViewActions.actionOnItemAtPosition(4,click()));
2,点击带有 “Effective Java ” 字符串的item
onView(withId(R.id.recyclerView))
.perform(RecyclerViewActions.actionOnItem(
hasDescendant(withText("Effective Java ")), click()));
这里的hasDescendant 指代的是对应的item的后代中有包含对应文本的内容的。
不过使用这个需要小心 因为很有可能会出现两个同样内容的。