How can I get specific element in a list based on a combination of two strings?

In my app, there’s an Activity that shows a list of item (LinearLayout inside a RecycleView), each item have a title and description (TextView inside the LinearLayout), and I have to choose one and tap on it.

How can I get one specific item based on the combination of title + description in that list? And if the notification is not showing, I have to scroll down until I find it.

Hi Alessandro,

Mobile automation test script will only perform actions on visible elements on the screen. You can try the following flows to achieve your goal:

1: Create your target object in Object Repository using the wanted title and description.
2: Tap on the target object
3: If step 2 failed, scroll down using the swipe keyword.
4: Try step 2 again.