Issue
I am trying to access a child view of a view. This is the line I am currently trying to get to work.
onData(withDesc("Description")).onChildView(withId(R.id.positive)).perform(click());
private static Matcher<Object> withDesc(String desc) {
return onView(withContentDescription(desc));
}
But this is returning a ViewInteraction
and not a Object
. How do I switch this so it will work?
Solution
I would suggest finding a way to match the desired view items that you want to load using one of the Hamcrest matchers. Look at the matchers available here: https://code.google.com/p/hamcrest/wiki/Tutorial
Answered By - Amokrane Chentir
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.