使用 Espresso UI 测试选项菜单中的 withId 方法无法 select 查看/菜单项
Unable to select view/ menu item using withId method in UI testing options menu using Espresso
我正在做一个 Android Kotlin 项目。我正在将使用 Espresso 框架编写的 UI 测试添加到我的项目中。但是在我的测试中,我无法使用 withId() 方法 select 操作栏中选项菜单的菜单项。
以下是我如何将菜单添加到 activity 中的操作栏中。
override fun onCreateOptionsMenu(menu: Menu?): Boolean {
menuInflater.inflate(R.menu.event_list, menu)
return true
}
override fun onOptionsItemSelected(item: MenuItem): Boolean {
when (item.itemId) {
R.id.action_logout -> {
ApplicationController.instance.clearLoginData()
finish()
}
}
return super.onOptionsItemSelected(item)
}
这是菜单资源文件夹中的event_list.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_logout"
android:icon="@android:drawable/ic_lock_power_off"
android:title="@string/menu_item_logout"
app:showAsAction="never"/>
</menu>
我的测试方法是这样的
@Test
fun itWipesOutLoginDataWhenLogoutMenuItemIsTapped() {
FakeEventService.SCENARIO_UNDER_TEST = 0
this.eventListActivityRule.launchActivity(null)
openActionBarOverflowOrOptionsMenu(ApplicationProvider.getApplicationContext<Context>())
onView(withId(R.id.action_logout)).perform(click())
}
如您在测试方法中所见,我正在 select 使用 withId() 方法设置菜单项。但是当我 运行 测试时,出现以下错误。
androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: with id: com.example.memento:id/action_logout
If the target view is not part of the view hierarchy, you may need to use Espresso.onData to load it from one of the following AdapterViews:androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView{2582e16 VFED.VC.. ........ 0,0-686,168}
View Hierarchy:
+>PopupDecorView{id=-1, visibility=VISIBLE, width=686, height=168, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params={(740,98)(686x168) gr=TOP START CENTER DISPLAY_CLIP_VERTICAL sim={state=unchanged} ty=APPLICATION_SUB_PANEL fmt=TRANSLUCENT surfaceInsets=Rect(112, 112 - 112, 112) (manual)
fl=LAYOUT_NO_LIMITS ALT_FOCUSABLE_IM WATCH_OUTSIDE_TOUCH SPLIT_TOUCH HARDWARE_ACCELERATED FLAG_LAYOUT_ATTACHED_IN_DECOR
pfl=WILL_NOT_REPLACE_ON_RELAUNCH LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+->PopupBackgroundView{id=-1, visibility=VISIBLE, width=686, height=168, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@de56b69, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+-->MenuDropDownListView{id=-1, visibility=VISIBLE, width=686, height=168, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@4044e8f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+--->ListMenuItemView{id=-1, visibility=VISIBLE, width=686, height=168, 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, layout-params=android.widget.AbsListView$LayoutParams@393b6fa, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2}
|
+---->AppCompatImageView{id=2131230882, res-name=group_divider, visibility=GONE, width=0, height=0, 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=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@70144ab, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->LinearLayout{id=2131230818, res-name=content, visibility=VISIBLE, width=686, height=168, 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, layout-params=android.widget.LinearLayout$LayoutParams@d648c6, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2}
|
+----->RelativeLayout{id=-1, visibility=VISIBLE, width=574, height=76, 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, layout-params=android.widget.LinearLayout$LayoutParams@4a503dd, tag=null, root-is-layout-requested=false, has-input-connection=false, x=56.0, y=46.0, child-count=2}
我的代码有什么问题,我该如何解决?
您不能在选择菜单项时使用 withId
,因为菜单中包含了自己的视图和 ID,因此您的 ID action_logout
永远不会存在于视图层次结构中(NoMatchingViewException
):
尝试使用不同的视图匹配器,例如使用 withText
:
openActionBarOverflowOrOptionsMenu(ApplicationProvider.getApplicationContext<Context>())
onView(withText("your_menu_item_logout_string")).perform(click())
另请注意,当菜单打开(弹出)时,所有后续测试交互都将在菜单内执行,直到它被关闭,因此您不必担心背景视图中的匹配冲突。
对于要在这里搜索答案的人来说,与菜单交互的最简单方法是使用 Barista 库。它提供了像 clickMenu(R.id.menu_item)
或 openMenu()
这样的方法来实现简单的菜单交互。即使项目隐藏在溢出内,单击一个也能正常工作。
我在 Android UI testing tutorial.
中有示例测试
我遇到了这个问题并尝试使用 openActionBarOverflowOrOptionsMenu() ,如 Aaron 的回答所示,但会出现“无溢出菜单按钮”错误。然而,他的回答证实了我的想法是测试找不到我真正想要测试的菜单小部件的原因。因此,我尝试了其他一些我认为可以访问工具栏的东西,从而允许找到小部件并通过以下方式获得成功:
onView(withId(R.id.my_toolbar)).check(matches(isDisplayed()));
onView(withId(R.id.my_toolbar)).check(matches(hasDescendant(withId(R.id.action_add))));
onView(withId(R.id.action_add)).perform(click());
我的猜测是此序列标识工具栏,然后允许通过其 ID 找到小部件“action_add”按钮。当我 运行 此测试打开目标 Intent 时,从而验证“action_add”小部件确实被 perform(click()).
单击了
希望对遇到同样困境的人有所帮助。
我正在做一个 Android Kotlin 项目。我正在将使用 Espresso 框架编写的 UI 测试添加到我的项目中。但是在我的测试中,我无法使用 withId() 方法 select 操作栏中选项菜单的菜单项。
以下是我如何将菜单添加到 activity 中的操作栏中。
override fun onCreateOptionsMenu(menu: Menu?): Boolean {
menuInflater.inflate(R.menu.event_list, menu)
return true
}
override fun onOptionsItemSelected(item: MenuItem): Boolean {
when (item.itemId) {
R.id.action_logout -> {
ApplicationController.instance.clearLoginData()
finish()
}
}
return super.onOptionsItemSelected(item)
}
这是菜单资源文件夹中的event_list.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_logout"
android:icon="@android:drawable/ic_lock_power_off"
android:title="@string/menu_item_logout"
app:showAsAction="never"/>
</menu>
我的测试方法是这样的
@Test
fun itWipesOutLoginDataWhenLogoutMenuItemIsTapped() {
FakeEventService.SCENARIO_UNDER_TEST = 0
this.eventListActivityRule.launchActivity(null)
openActionBarOverflowOrOptionsMenu(ApplicationProvider.getApplicationContext<Context>())
onView(withId(R.id.action_logout)).perform(click())
}
如您在测试方法中所见,我正在 select 使用 withId() 方法设置菜单项。但是当我 运行 测试时,出现以下错误。
androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: with id: com.example.memento:id/action_logout
If the target view is not part of the view hierarchy, you may need to use Espresso.onData to load it from one of the following AdapterViews:androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView{2582e16 VFED.VC.. ........ 0,0-686,168}
View Hierarchy:
+>PopupDecorView{id=-1, visibility=VISIBLE, width=686, height=168, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params={(740,98)(686x168) gr=TOP START CENTER DISPLAY_CLIP_VERTICAL sim={state=unchanged} ty=APPLICATION_SUB_PANEL fmt=TRANSLUCENT surfaceInsets=Rect(112, 112 - 112, 112) (manual)
fl=LAYOUT_NO_LIMITS ALT_FOCUSABLE_IM WATCH_OUTSIDE_TOUCH SPLIT_TOUCH HARDWARE_ACCELERATED FLAG_LAYOUT_ATTACHED_IN_DECOR
pfl=WILL_NOT_REPLACE_ON_RELAUNCH LAYOUT_CHILD_WINDOW_IN_PARENT_FRAME}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+->PopupBackgroundView{id=-1, visibility=VISIBLE, width=686, height=168, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@de56b69, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+-->MenuDropDownListView{id=-1, visibility=VISIBLE, width=686, height=168, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@4044e8f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+--->ListMenuItemView{id=-1, visibility=VISIBLE, width=686, height=168, 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, layout-params=android.widget.AbsListView$LayoutParams@393b6fa, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2}
|
+---->AppCompatImageView{id=2131230882, res-name=group_divider, visibility=GONE, width=0, height=0, 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=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@70144ab, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->LinearLayout{id=2131230818, res-name=content, visibility=VISIBLE, width=686, height=168, 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, layout-params=android.widget.LinearLayout$LayoutParams@d648c6, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2}
|
+----->RelativeLayout{id=-1, visibility=VISIBLE, width=574, height=76, 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, layout-params=android.widget.LinearLayout$LayoutParams@4a503dd, tag=null, root-is-layout-requested=false, has-input-connection=false, x=56.0, y=46.0, child-count=2}
我的代码有什么问题,我该如何解决?
您不能在选择菜单项时使用 withId
,因为菜单中包含了自己的视图和 ID,因此您的 ID action_logout
永远不会存在于视图层次结构中(NoMatchingViewException
):
尝试使用不同的视图匹配器,例如使用 withText
:
openActionBarOverflowOrOptionsMenu(ApplicationProvider.getApplicationContext<Context>())
onView(withText("your_menu_item_logout_string")).perform(click())
另请注意,当菜单打开(弹出)时,所有后续测试交互都将在菜单内执行,直到它被关闭,因此您不必担心背景视图中的匹配冲突。
对于要在这里搜索答案的人来说,与菜单交互的最简单方法是使用 Barista 库。它提供了像 clickMenu(R.id.menu_item)
或 openMenu()
这样的方法来实现简单的菜单交互。即使项目隐藏在溢出内,单击一个也能正常工作。
我在 Android UI testing tutorial.
中有示例测试我遇到了这个问题并尝试使用 openActionBarOverflowOrOptionsMenu() ,如 Aaron 的回答所示,但会出现“无溢出菜单按钮”错误。然而,他的回答证实了我的想法是测试找不到我真正想要测试的菜单小部件的原因。因此,我尝试了其他一些我认为可以访问工具栏的东西,从而允许找到小部件并通过以下方式获得成功:
onView(withId(R.id.my_toolbar)).check(matches(isDisplayed()));
onView(withId(R.id.my_toolbar)).check(matches(hasDescendant(withId(R.id.action_add))));
onView(withId(R.id.action_add)).perform(click());
我的猜测是此序列标识工具栏,然后允许通过其 ID 找到小部件“action_add”按钮。当我 运行 此测试打开目标 Intent 时,从而验证“action_add”小部件确实被 perform(click()).
单击了希望对遇到同样困境的人有所帮助。