0

我有

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 ,但我确信存在相对布局。

有没有其他人点击过相对布局?

4

1 回答 1

0

您需要使用.description("foo")它的 contentDescription 来查找 UiObject

于 2013-03-04T14:47:24.247 回答