单击有时在溢出菜单中的菜单项

时间:2016-11-01 15:35:14

标签: android android-espresso optionmenu

目前点击溢出菜单中某些设备上的菜单项我正在执行以下操作:

fun invokeMenu(@IdRes menuId: Int, @StringRes menuStringRes: Int) {
 try {
  onView(withId(menuId)).perform(click())
 } catch (nmv: NoMatchingViewException) {
  openActionBarOverflowOrOptionsMenu(InstrumentationRegistry.getInstrumentation().targetContext)
  onView(withText(menuStringRes)).perform(click())
 }
}

但我正在寻找一种更好的方法 - 理想情况下,我必须知道菜单ID。你在espresso测试中如何做到这一点?

1 个答案:

答案 0 :(得分:6)

不幸的是,你的理想情况无法完成。这是由于支持库的构建。

让我们从PopupMenu开始,MenuPopupHelper引用MenuPopup,引用StandardMenuPopup。这是一个扩展的抽象类ie。由MenuAdapter。它引用了ActionMenuItemView。如果你查看MenuAdapter的第92行,你会看到,行:

itemView.initialize(getItem(position), 0);

这是关键方法调用。它可以在ListMenuItemViewid is attached to ActionMenuItemView中调用。它们的实现方式不同,is not attached to ListMenuItemViewMenuAdapter.getItemId(int position)

此外,Regex 101 web page仅返回position。菜单项的ID在溢出菜单中丢失。

Hovewer,您的代码可以简化为一个班轮。定义一个函数:

public static Matcher<View> withMenuIdOrText(@IdRes int id, @StringRes int menuText) {
    Matcher<View> matcher = withId(id);
    try {
        onView(matcher).check(matches(isDisplayed()));
        return matcher;
    } catch (Exception NoMatchingViewException) {
        openActionBarOverflowOrOptionsMenu(InstrumentationRegistry.getInstrumentation().getTargetContext());
        return withText(menuText);
    }
}

用法:

onView(withMenuIdOrText(R.id.menu_id, R.string.menu_text)).perform(click());