我有
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
,但我确信存在相对布局。
有没有其他人点击过相对布局?