使用uiautomator时,为什么要使用提示而不是EditText的contentDescription?

时间:2014-03-12 08:43:00

标签: android android-ui android-testing uiautomator

1 个答案:

答案 0 :(得分:1)

您可以同时使用内容描述和提示。

资源ID在访问自Android API Level 18以来添加的元素时也非常有用。

可以用作:

UiObject psswrd = new UiObject(new UiSelector().resourceId("com.example.abc:id/password")); 
psswrd.click();
psswrd.setText("qwerty");