我正在尝试构建一个测试,以验证我的PreferenceScreen视图与咖啡。我想点击的文本在底部。那么我如何在PreferenceScreen中向下滚动呢?
我试过这段代码,但它不起作用:
onData(allOf(is(instanceOf(String.class)), is("Notifications"))).perform(click());
发布于 2016-07-01 22:06:24
这在过去是有效的:
onData(PreferenceMatchers.withTitleText("Notifications")).perform(click());但是现在你可以使用RecyclerViewActions
onView(withId(androidx.preference.R.id.recycler_view))
.perform(RecyclerViewActions.actionOnItem(hasDescendant(withText("Notifications")),
click()));https://stackoverflow.com/questions/38023269
复制相似问题