作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试测试一个应用程序,我需要隐藏键盘,因为我因此无法点击按钮。所以,我在 build.gradle 中添加了 Espresso:
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
并尝试从 android.support.test.espresso.action.ViewActions
库中使用它:
ViewActions.closeSoftKeyboard();
测试成功运行,但在我的布局中的 EditText 中键入一些文本后失败。键盘还在那里,正在显示。
附言在 reading this answer. 之后我意识到这是键盘的错
最佳答案
ViewAction
本身不会执行任何操作,除非在 ViewInteraction
中使用它。这意味着您需要将它与您之前在 perform()
中的操作链接起来,如下所示:onView()..perform(typeText(..), closeSoftKeyboard())
或使用 Espresso
类中的内置助手,如下所示:Espresso.closeSoftKeyboard()
关于android - 我无法让 ViewActions.closeSoftKeyboard() 在 Espresso 2.2.2 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39580415/
我正在尝试测试一个应用程序,我需要隐藏键盘,因为我因此无法点击按钮。所以,我在 build.gradle 中添加了 Espresso: androidTestCompile 'com.android.
我是一名优秀的程序员,十分优秀!