如何在Espresso Test Android Studio中的软键盘模拟器上按“搜索按钮”

前端之家收集整理的这篇文章主要介绍了如何在Espresso Test Android Studio中的软键盘模拟器上按“搜索按钮”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在Espresso Test Android Studio中按下软键盘模拟器上的“搜索按钮”?它位于右下方.

screenshot of emulator

解决方法

使用此处记录的pressImeActionButton()ViewAction: https://developer.android.com/reference/android/support/test/espresso/action/ViewActions.html#pressImeActionButton()
onView(withId(R.id.search_Box))
    .perform(pressImeActionButton());

此外,您可以使用此处记录的hasImeAction(int imeAction)来检查是否显示了预期的IME操作.

原文链接:https://www.f2er.com/android/315877.html

猜你在找的Android相关文章