Тестирование включало представления с эспрессо - PullRequest
0 голосов
/ 12 июня 2018

Я пытаюсь получить доступ к TextView и ImageView во включенном представлении с помощью Espresso, но всегда получаю следующую ошибку:

No views in hierarchy found matching: with id: ???:id/llMenuBtnSearch
If the target view is not part of the view hierarchy, you may need to use Espresso.onData to load it from one of the following AdapterViews:android.widget.ListView{66d0aa9 V.ED.VC.. ........ 0,0-720,892 #7f090117 app:id/listView}

Я не знаю, что "использовать Espresso.onData длязагрузить его »означает.

Я пытался найти ответ в следующих источниках:

Эспрессо выбрать детей включенного макета

https://developer.android.com/training/testing/espresso/recipes

https://www.programcreek.com/java-api-examples/index.php?api=android.support.test.espresso.matcher.RootMatchers

Но до сих пор мне не удалось найти решение.

Моя иерархия представлений:

<FrameLayout 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"
    android:focusableInTouchMode="true"
    tools:context="com.sentilant.driviantasks.navigation.Navigation.MapMaster"
    android:tag="mapMaster">

    ...

        <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

            ...

            <include
            android:id="@+id/vRouteDetails"
            layout="@layout/route_details"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="20dp"
            android:visibility="invisible" />

    </android.support.design.widget.CoordinatorLayout>

</FrameLayout>

И включенный макет(входит в id: vRouteDetails в родительском макете)

<LinearLayout 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"
    android:layout_margin="20dp"
    android:background="@drawable/layout_background"
    android:orientation="vertical">

    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="5dp">

        <ImageButton
            android:id="@+id/ibRDetailsClose"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="5dp"
            android:background="@null"
            app:srcCompat="@drawable/menu_ic_back"
            tools:ignore="ContentDescription" />

        <TextView
            android:id="@+id/tvRDetailsTitle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:gravity="center"
            android:text="@string/route_details_title"
            android:textSize="18sp"
            tools:text="Route Details" />

    </android.support.design.widget.CoordinatorLayout>
</LinearLayout>

Я пытаюсь связаться как с ImageButton, так и с TextView.Вот так:

onView(allOf(withId(R.id.ibRDetailsClose), withParent(withId(R.id.vRouteDetails))))
                .perform(click());

Есть ли решение, которое я пропустил?

Заранее спасибо.

1 Ответ

0 голосов
/ 12 июня 2018

Вы можете легко получить 2 вида, как показано ниже:

//check your text view is shown
onView(withId(R.id.tvRDetailsTitle)).check(matches(isDisplayed()));
//click on your image view
onView(withId(R.id.ibRDetailsClose)).perform(click());
...