我从here找到了一个非常酷的代码块,它有助于执行等待函数,直到出现资源withId(int)
- 当我实际拥有一个资源ID时它似乎工作正常用。
但是,我正在使用的应用程序通常没有简单的资源ID,我必须使用Matchers。
一个例子:
Matcher secondBanner = allOf(childAtPosition(allOf(withId(R.id.story_details_body),
childAtPosition(IsInstanceOf.<View>instanceOf(
android.widget.LinearLayout.class),2)),0)))
有没有办法在匹配器上执行类似的等待,就像资源ID一样?
我在上一个链接中提到的代码是 -
/** Perform action of waiting for a specific view id. */
public static ViewAction waitId(final int viewId, final long millis) {
return new ViewAction() {
@Override
public Matcher<View> getConstraints() {
return isRoot();
}
@Override
public String getDescription() {
return "wait for a specific view with id <" + viewId + "> during " + millis + " millis.";
}
@Override
public void perform(final UiController uiController, final View view) {
uiController.loopMainThreadUntilIdle();
final long startTime = System.currentTimeMillis();
final long endTime = startTime + millis;
final Matcher<View> viewMatcher = withId(viewId);
do {
for (View child : TreeIterables.breadthFirstViewTraversal(view)) {
// found view with required ID
if (viewMatcher.matches(child)) {
return;
}
}
uiController.loopMainThreadForAtLeast(50);
}
while (System.currentTimeMillis() < endTime);
// timeout happens
throw new PerformException.Builder()
.withActionDescription(this.getDescription())
.withViewDescription(HumanReadables.describe(view))
.withCause(new TimeoutException())
.build();
}
};
}
我试图简单地将所有内容从withId(int)
更改为Matcher
,但无济于事。
那么可以将这段代码转换为可以执行等待/超时的代码吗?
感谢您的帮助。
答案 0 :(得分:1)
您只需使用Thread.sleep(timeInMilisec)
即可。它会在指定的时间内等待。
或
Idling Resources没关系,但您不仅需要在测试中添加一些额外的代码,还需要在项目中添加一些额外的代码。您可以在代码中指定测试应该等待以及何时应该再次前进。