是否可以使用Espresso的IdlingResource等待某个视图出现?
在我的测试中,我处于一个阶段,在按下按钮应用程序之后,它会进行大量异步计算并向云服务发出请求,然后它会显示特定视图.
In my test I have a stage where after pressing a button application does a lot of asynchronous calculations and requests to the cloud service, after which it displays a certain view.
是否可以使用Espresso的IdlingResource
实现来等待某个视图出现?
Is it possible to use Espresso's IdlingResource
implementation to wait until a certain view appears?
我已经在此处阅读了答案,并且评论似乎建议您可以使用IdlingResource
相反,但我不知道如何. Espresso似乎没有内置的方法来处理长时间的操作,但是不得不编写自己的等待循环感觉就像是黑客.
I've read an answers here and comments seems to suggest that you can use IdlingResource
instead, but I don't understand how. Espresso does not seem to have any built-in way to handle long operations, but having to write your own waiting loops feels like a hack.
任何解决此问题的方法还是应该按照链接线程中的答案进行操作?
Any way to solve this or should I just do as the answer in the linked thread suggests?
您的IdlingResource可能看起来像这样:
Your IdlingResource could look like this:
import android.support.test.espresso.IdlingResource;
import android.support.test.espresso.ViewFinder;
import android.support.test.espresso.ViewInteraction;
import android.view.View;
import org.hamcrest.Matcher;
import java.lang.reflect.Field;
import static android.support.test.espresso.Espresso.onView;
public class ViewShownIdlingResource implements IdlingResource {
private static final String TAG = ViewShownIdlingResource.class.getSimpleName();
private final Matcher<View> viewMatcher;
private ResourceCallback resourceCallback;
public ViewShownIdlingResource(final Matcher<View> viewMatcher) {
this.viewMatcher = viewMatcher;
}
@Override
public boolean isIdleNow() {
View view = getView(viewMatcher);
boolean idle = view == null || view.isShown();
if (idle && resourceCallback != null) {
resourceCallback.onTransitionToIdle();
}
return idle;
}
@Override
public void registerIdleTransitionCallback(ResourceCallback resourceCallback) {
this.resourceCallback = resourceCallback;
}
@Override
public String getName() {
return this + viewMatcher.toString();
}
private static View getView(Matcher<View> viewMatcher) {
try {
ViewInteraction viewInteraction = onView(viewMatcher);
Field finderField = viewInteraction.getClass().getDeclaredField("viewFinder");
finderField.setAccessible(true);
ViewFinder finder = (ViewFinder) finderField.get(viewInteraction);
return finder.getView();
} catch (Exception e) {
return null;
}
}
}
然后,您可以创建一个帮助程序,等待您的视图:
Then, you could create a helper method waiting for your view:
public void waitViewShown(Matcher<View> matcher) {
IdlingResource idlingResource = new ViewShownIdlingResource(matcher);///
try {
IdlingRegistry.getInstance().register(idlingResource);
onView(matcher).check(matches(isDisplayed()));
} finally {
IdlingRegistry.getInstance().unregister(idlingResource);
}
}
最后,在您的测试中:
@Test
public void someTest() {
waitViewShown(withId(R.id.<some>));
//do whatever verification needed afterwards
}
您可以通过使IdlingResource等待任何条件,而不仅是对可见性的等待,来改进此示例.
You could improve this example by making IdlingResource wait for any condition, not just for the visibility one.