gpt4 book ai didi

android - 如何在 Espresso 上按键编辑器操作

转载 作者:行者123 更新时间:2023-12-04 23:52:51 27 4
gpt4 key购买 nike

如何使用 Espresso 按下 Android 软键上的 Editor Action 键?我试过了:

onView(withId(R.id.edToNumber)).perform(typeText("MDO158"),ViewActions.pressKey(KeyEvent.ACTION_UP), closeSoftKeyboard())

最佳答案

要从特定 EditText 的键盘单击 ActionDone 按钮,您可以使用以下代码来完成:

onView(withId(R.id.edToNumber)).perform(typeText("MDO158");
onView(withId(R.id.edToNumber)).perform(pressImeActionButton());

注意:

pressImeActionButton() 不是专门用于从键盘单击 ActionDone 按钮,它单击键盘包含的任何 ActionButton,例如 ActionDoneActionSearchActionNext

(可选)您可以使用以下代码在不点击 ActionDone 按钮的情况下关闭特定 EditText 的键盘:

onView(withId(R.id.edToNumber)).perform(typeText("MDO158");
onView(withId(R.id.edToNumber)).perform(closeSoftKeyboard());

关于android - 如何在 Espresso 上按键编辑器操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52694608/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com