Search code examples
appiumappium-android

Get all elements details from android RecyclerView


I am working on Android application automation, in that I am facing issue with the recycler view data handling.

  1. All data are appearing into Recycler view in List Format.
  2. I have stored all items in List but at a time I am able to get only presented items on UI.

I need all items into List??

Need to access those MobileElement on Screen


Solution

  • Add initial data into your List, then perform some action to show another data (scroll, refresh or whatever, it based on application logic) and append these data to your list. Keep doing it until you collect all data. What is the actual issue you faced with?