You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To target a View that isn't on the screen, Espresso has a method onData(<matcher>)
The matcher is a Hamcrest matcher that matches views
Currently, we don't use onData we use onView which only finds elements on the page
We need to figure out if we can use onData to target views using currently supported selectors but I also think we should add a broader 'hamcrest matcher' strategy that lets people put in arbitrary hamcrest selection strategies
The text was updated successfully, but these errors were encountered:
See https://medium.com/google-developers/adapterviews-and-espresso-f4172aa853cf for reference
onData(<matcher>)
onData
we useonView
which only finds elements on the pageThe text was updated successfully, but these errors were encountered: