Как получить конкретный элемент из RecylerView с помощью UiAutomator - PullRequest
0 голосов
/ 27 июня 2019

Я пытаюсь автоматизировать тестирование приложения. На одном из экранов у меня есть список элементов, и я хочу нажать на указанный элемент и соответствующее изображение. Все элементы указаны как RecyclerView. Я могу нажать только на первый пункт.

Я использую Kotlina nd UiAutomatore. У меня есть обработчик объектов UiDevice, и я могу щелкнуть только первый элемент.

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/black">

    <TextView
        android:id="@+id/activity_user_list_header"
        android:layout_width="0dp"
        android:layout_height="55dp"
        android:background="@color/settingsSectionBackground"
        android:gravity="center_vertical"
        android:paddingStart="36dp"
        android:text="@string/activity_user_list_users_label"
        android:textColor="@color/settingsSectionTitle"
        android:textSize="12sp"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/activity_user_list_add_new_user" />

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/activity_user_list_recycler"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/activity_user_list_header" />
</androidx.constraintlayout.widget.ConstraintLayout>
val instrumentation = InstrumentationRegistry.getInstrumentation()
val device = UiDevice.getInstance(instrumentation)
device.findObject(By.res("com.temp.mobile","item_user_list_trash")).click()

Просто удаляем первый элемент

...