Giter Site home page Giter Site logo

Comments (4)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
Have you tried any of these - 
http://developer.android.com/reference/android/support/test/espresso/contrib/Rec
yclerViewActions.html ?

Original comment by [email protected] on 27 May 2015 at 1:34

from android-test-kit.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
RecyclerViewActions only supports performing actions on RecyclerView. 
However it doensn't support check with view assertions the state of a recycler 
view child view.


Original comment by [email protected] on 27 May 2015 at 9:50

from android-test-kit.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
That WAI. You should use RecylcerViewActions to interact with RV. RV is not 
really compatible with AdapterViews and the way we actually obtain the the View 
for a given piece of data. Here is an example how you should use the API:

    onView(withId(rvLayoutId)).perform(scrollTo(hasDescendant(withText(ITEM_128))));
    onView(withItemText(ITEM_128)).check(matches(isDisplayed()));

So instead of using onData...check(..) you first scroll the View into ViewPort 
using the scrollTo(...) Action and then you can perform a ViewAssertion like 
you usually do with espresso. 

Original comment by [email protected] on 8 Jun 2015 at 3:45

  • Changed state: WontFix

from android-test-kit.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
Imagine the following layout:

RecyclerView
 -> View 
    -> Other views
    -> Button with text "Ok"
-> View 
    -> Other views
    -> Button with text "Ok"
 -> View 
    -> Other views
    -> Button with text "Ok"
-> View 
    -> Other views
    -> Button with text "Ok"

So I want to assert if the view at index 1 has a button with the text "Ok". 
Using your approach it would be basically an ambiguous query because the same 
text would appear multiple times.

Moreover scrollTo cannot guarantee that the button is actually visible, because 
the child view  of the recycler view could occupy more space than the screen.


Original comment by [email protected] on 8 Jun 2015 at 5:53

from android-test-kit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.