我有
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