Тест эспрессо Android всегда терпит неудачу в сопоставлении текста - PullRequest
0 голосов
/ 19 февраля 2019

У меня проблема в тесте эспрессо, я не знаю, почему сопоставление текста всегда терпит неудачу со мной, я даже пытался создать простое приложение с двумя действиями, первое действие имеет просмотр текста и две кнопки, одна кнопка показывает всплывающее окно, а другаяперейти к следующему действию, во время записи, когда добавить утверждение к тексту и правильно сгенерированному коду, я запускаю тест, который всегда не показывает эту ошибку:

android.support.test.espresso.NoMatchingViewException: нет представлений в иерархии, найденныхсоответствия: (с id: com.example.admin.testtest2demoo: id / textView и с text: is "Rooh" и Child в позиции 0 в родительском Child в позиции 0 в родительском с id: android: id / content и отображается наэкран для пользователя)

здесь тестовый код:

package com.example.admin.testtest2demoo; 

@LargeTest
@RunWith(AndroidJUnit4.class)
public class MainActivityTest {

@Rule
public ActivityTestRule<MainActivity> mActivityTestRule = new ActivityTestRule<>(MainActivity.class);

@Test
public void mainActivityTest() {

    try {
        Thread.sleep(2000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

    ///when click on this button show toast
    ViewInteraction appCompatButton = onView(
            allOf(withId(R.id.button2), withText("show SomeThing"),
                    childAtPosition(
                            childAtPosition(
                                    withId(android.R.id.content),
                                    0),
                            2),
                    isDisplayed()));
    appCompatButton.perform(click());

    try {
        Thread.sleep(2000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

    ///when click on this button show toast
    ViewInteraction appCompatButton2 = onView(
            allOf(withId(R.id.button2), withText("show SomeThing"),
                    childAtPosition(
                            childAtPosition(
                                    withId(android.R.id.content),
                                    0),
                            2),
                    isDisplayed()));
    appCompatButton2.perform(click());

    try {
        Thread.sleep(2000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

    ///check the text in first activity (is it Rooh)
    ViewInteraction textView = onView(
            allOf(withId(R.id.textView), withText("Rooh"),
                    childAtPosition(
                            childAtPosition(
                                    withId(android.R.id.content),
                                    0),
                            0),
                    isDisplayed()));
    textView.check(matches(withText("Rooh")));

    try {
        Thread.sleep(2000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

    ///when click on this button go to next activity
    ViewInteraction appCompatButton3 = onView(
            allOf(withId(R.id.button), withText("Go Next"),
                    childAtPosition(
                            childAtPosition(
                                    withId(android.R.id.content),
                                    0),
                            0),
                    isDisplayed()));
    appCompatButton3.perform(click());

    try {
        Thread.sleep(2000);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

    ///check the text in second activity (is it Hello World!)
    ViewInteraction textView2 = onView(
            allOf(withId(R.id.tv1), withText("Hello World!"),
                    childAtPosition(
                            allOf(withId(R.id.background),
                                    childAtPosition(
                                            withId(R.id.swipe_refresh_layout),
                                            0)),
                            0),
                    isDisplayed()));
    textView2.check(matches(withText("Hello World!")));
}

private static Matcher<View> childAtPosition(
        final Matcher<View> parentMatcher, final int position) {

    return new TypeSafeMatcher<View>() {
        @Override
        public void describeTo(Description description) {
            description.appendText("Child at position " + position + " in parent ");
            parentMatcher.describeTo(description);
        }

        @Override
        public boolean matchesSafely(View view) {
            ViewParent parent = view.getParent();
            return parent instanceof ViewGroup && parentMatcher.matches(parent)
                    && view.equals(((ViewGroup) parent).getChildAt(position));
        }
    };
}
}

И это макет первого действия:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">


<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/button2"
    android:onClick="goNext"
    android:text="Go Next"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/button2"
    app:layout_constraintVertical_bias="0.183" />

<TextView
    android:id="@+id/textView"
    android:layout_width="97dp"
    android:layout_height="27dp"
    android:layout_marginTop="80dp"
    android:gravity="center"
    android:text="Rooh"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.501"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView"
    android:layout_marginTop="64dp"
    android:onClick="showSomeThing"
    android:text="show SomeThing"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.502"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/textView" />
</android.support.constraint.ConstraintLayout>

И второе действие имеет только одинtextview, а также его сбой, если я добавляю в него утверждение.

, если я комментирую текстовые утверждения, тест пройден, но если текстовое утверждениетам это всегда терпит неудачу, я также включаю сон после каждого шага (я знаю, что это не имеет никакого отношения к этому, но на всякий случай), я не могу понять код, сгенерированный записью, и текст отображается правильно, но он говорит, что нет просмотров внайдено соответствие иерархии !!

что я делаю не так ?!заранее спасибо

1 Ответ

0 голосов
/ 21 февраля 2019

Приведенный ниже код выглядит совершенно неверно:

ViewInteraction textView = onView(
            allOf(withId(R.id.textView), withText("Rooh"),
                    childAtPosition(
                            childAtPosition(
                                    withId(android.R.id.content),
                                    0),
                            0),
                    isDisplayed()));
    textView.check(matches(withText("Rooh")));
  1. На основе вашего макета есть только один TextView компонент, который не имеет дочерних элементов.Таким образом, childAtPosition() не может быть применено к нему.

  2. textView.check(matches(withText("Rooh"))); является избыточным, поскольку вы уже делаете это, когда объявляете textView.

Вы можете изменить свой код на следующий, который должен работать:

ViewInteraction textView = onView(allOf(withId(R.id.textView), withText("Rooh")));
textView.check(matches(isDisplayed()));

Подробнее о сопоставлении текста вы можете найти здесь .

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...