如何用UiAutomatorViewer点击RelativeLayout



我有

UiObject okButton = new UiObject(new UiSelector().text("button1"));
okButton.click();

,它工作完美,我设置android:contentDescription="button1",一切工作正常,按钮被点击,一切都很好。

但是当我将android:contentDescription="relativelayout1"设置为相对布局时,

UiObject rel1 = new UiObject(new UiSelector().text("relativelayout1"));
rel1.click();

这个代码确实产生了com.android.uiautomator.core.UiObjectNotFoundException但我确信相对布局是存在的。

有没有人做过点击相对布局?

你需要使用.description("foo")找到一个UiObject的contentDescription

相关内容

  • 没有找到相关文章

最新更新