0

使用Espresso可以验证当我们选择特定输入字段时出现哪种类型的软键盘。例如,让我们选择Mobile Number - EditText它必须显示数字键盘。我们可以使用Espresso进行验证吗?Espresso软键盘类型

+0

为什么你想用espresso检查你使用的是哪种键盘?要确保你有数字键盘decalre它在EditText变量,因为它在这里解释:http://stackoverflow.com/questions/15647327/phone-number-formatting-an-edittext-in-android – piotrek1543

回答

4

Espresso只需运行Single application.所有视图必须属于当前的activity。由于Keyboard属于System,所以Espresso无法对其进行检查。您可以在Espresso测试用例中使用它uiautomator! 我不尝试它,但我认为这可能会有所帮助。