Espresso Get Display Activity



我们能在Espresso中获得当前的显示活动,从而相应地写下一些条件代码吗?

在我的应用程序中,我们有一个简介页面,它只显示用户一次,下一个应用程序直接将用户带到登录屏幕。我们可以检查用户登陆的屏幕吗?这样我们就可以相应地写下我们的测试用例。

您可以在我们必须检查的布局中放置一个唯一的ID。在你描述的例子中,我会把它放在登录布局中:

<RelativeLayout ...
    android:id="@+id/loginWrapper"
 ...

然后,在测试中,您只需检查是否显示此Id:

onView(withId(R.id.loginWrapper)).check(matches(isCompletelyDisplayed()));

我不知道是否有更好的方法,但这个有效。

您也可以使用在线找到的waitId方法等待一段时间:

/**
 * Perform action of waiting for a specific view id.
 * <p/>
 * E.g.:
 * onView(isRoot()).perform(waitId(R.id.dialogEditor, Sampling.SECONDS_15));
 *
 * @param viewId
 * @param millis
 * @return
 */
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();
        }
    };
}

用这种方法你可以做例如:

onView(isRoot()).perform(waitId(R.id.loginWrapper, 5000));

这样,如果登录屏幕出现的时间不超过5秒,测试就不会失败。

在我的Espresso测试类中,我使用ActivityTestRule,因此为了获得当前活动,我使用

mRule.getActivity()

这是我的示例代码:

@RunWith(AndroidJUnit4.class)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class SettingsActivityTest {
    @Rule
    public ActivityTestRule<SettingsActivity> mRule = new ActivityTestRule<>(SettingsActivity.class);
    @Test
    public void checkIfToolbarIsProperlyDisplayed() throws InterruptedException {
        onView(withText(R.string.action_settings)).check(matches(withParent(withId(R.id.toolbar))));
        onView(withId(R.id.toolbar)).check(matches(isDisplayed()));
        Toolbar toolbar = (Toolbar) mRule.getActivity().findViewById(R.id.toolbar);
        assertTrue(toolbar.hasExpandedActionView());
    }
}

希望它能帮助

相关内容

  • 没有找到相关文章

最新更新