如何使用Android UI Automator Viewer点按没有文本或内容描述的UI元素?

时间:2018-11-06 10:14:21

标签: android ui-automation uiautomator android-uiautomator

我目前正在使用Android UI Automator浏览器。我要单击没有文本或内容描述的按钮,如何单击该按钮?

1 个答案:

答案 0 :(得分:0)

在能够单击按钮之前,您需要确保正确设置了测试。我建议您检查this sample by Google(如果您尚未执行此操作),除了两个测试外,还可以复制几乎所有内容。确保将包名称从其com.example.android.testing.uiautomator.BasicSample更改为包名称。

只要您在布局中具有按钮的ID,就应该可以单击它。

UiObject2 button = mDevice.findObject(By.res(BASIC_SAMPLE_PACKAGE, "your_button_id"));
button.click();