我有一个app,有ListView,我要找LinearLayout,id=order_untake_jijia_listview_jia

java - Espresso onData 在 View 上执行  'load adapter data' 时出错-LMLPHP

代码是:

onData(withClassName(endsWith("ListView")))
            .inAdapterView(allOf(withId(R.id.order_untake_jijia_listview_ll), hasSibling(withText("9.0"))))
            .atPosition(0).onChildView(withId(R.id.order_untake_jijia_listview_jia));
            dataInteraction.perform(ViewActions.click());

但我有错误:
Error performing 'load adapter data' on view '(with id: com.edaixi:id/order_untake_jijia_listview_ll and has sibling: with text: is "9.0")'.
Caused by: java.lang.RuntimeException: Action will not be performed because the target view does not match one or more of the following constraints:
(is assignable from class: class android.widget.AdapterView and is displayed on the screen to the user)
Target view: "LinearLayout{id=2131493753, res-name=order_untake_jijia_listview_ll, visibility=VISIBLE, width=170, height=50, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, root-is-layout-requested=false, has-input-connection=false, x=572.0, y=25.0, child-count=3}"

最佳答案

您使用的 onData 不正确。onData 采用对象匹配器 - 它旨在匹配用于填充列表的自定义模型对象。所以如果你有一个简单的字符串列表,你会说 onData(instanceOf(String.class)).atPosition(0)onData(is("This exact String at position 0"))
inAdapterView 用于匹配包含您的数据的特定适配器 View 实例。当您需要区分屏幕上的多个列表时,您需要这样做。例如,如果你有一个名为 ListViewR.id.list1 和第二个 R.id.list2 都包含 String s,你会说 onData(is("The String")).inAdapterView(withId(R.id.list1)) 来匹配第一个列表中的对象。

如果您只需要单击适配器中的单个项目,您通常也不需要在这些情况下指定 subview 。您通常使用 onChildView 对 subview 项进行断言,或者如果您碰巧在该 subview 上有一个单独的专用点击监听器。

因此,您似乎使情况过于复杂,您应该能够将代码更新为如下所示:

onData(instanceOf(MyCustomClassOfObjectsInAdapter.java))
    .atPosition(0)
    .perform(click());

如果这不能解决您的问题,请提供您的列表项外观的布局代码以及具有 ListView 的主屏幕布局,以及带有显示示例的屏幕截图,并阐明您要尝试的内容匹配/行为/断言反对,我可以尝试引导您使用正确的方法集来完成您的需求。

希望有帮助!

10-07 19:37