class DataInteraction


An interface to interact with data displayed in AdapterViews.

This interface builds on top of ViewInteraction and should be the preferred way to interact with elements displayed inside AdapterViews.

This is necessary because an AdapterView may not load all the data held by its Adapter into the view hierarchy until a user interaction makes it necessary. Also it is more fluent / less brittle to match upon the data object being rendered into the display then the rendering itself.

By default, a DataInteraction takes place against any AdapterView found within the current screen, if you have multiple AdapterView objects displayed, you will need to narrow the selection by using the inAdapterView method.

The check and perform method operate on the top level child of the adapter view, if you need to operate on a subview (eg: a Button within the list) use the onChildView method before calling perform or check.

Summary

Nested types

Internal matcher that is required for onData.

Public functions

DataInteraction!

Selects the view which matches the nth position on the adapter based on the data matcher.

ViewInteraction!
check(assertion: ViewAssertion!)

Performs an assertion on the state of the view after we force the data to be loaded.

DataInteraction!

Selects a particular adapter view to operate on, by default we operate on any adapter view on the screen.

DataInteraction!

Causes this data interaction to work within the Root specified by the given root matcher.

DataInteraction!

Causes perform and check methods to take place on a specific child view of the view returned by Adapter.getView()

ViewInteraction!
perform(actions: Array<ViewAction!>!)

Performs an action on the view after we force the data to be loaded.

DataInteraction!

Use a different AdapterViewProtocol if the Adapter implementation does not satisfy the AdapterView contract like (@code ExpandableListView)

Public functions

atPosition

@CheckReturnValue
fun atPosition(atPosition: Int!): DataInteraction!

Selects the view which matches the nth position on the adapter based on the data matcher.

check

fun check(assertion: ViewAssertion!): ViewInteraction!

Performs an assertion on the state of the view after we force the data to be loaded.

Returns
ViewInteraction!

an ViewInteraction for more assertions or actions.

Throws
java.lang.RuntimeException

when being invoked on the main thread.

inAdapterView

@CheckReturnValue
fun inAdapterView(adapterMatcher: Matcher<View!>!): DataInteraction!

Selects a particular adapter view to operate on, by default we operate on any adapter view on the screen.

inRoot

@CheckReturnValue
fun inRoot(rootMatcher: Matcher<Root!>!): DataInteraction!

Causes this data interaction to work within the Root specified by the given root matcher.

onChildView

@CheckReturnValue
fun onChildView(childMatcher: Matcher<View!>!): DataInteraction!

Causes perform and check methods to take place on a specific child view of the view returned by Adapter.getView()

perform

fun perform(actions: Array<ViewAction!>!): ViewInteraction!

Performs an action on the view after we force the data to be loaded.

Returns
ViewInteraction!

an ViewInteraction for more assertions or actions.

Throws
java.lang.RuntimeException

when being invoked on the main thread.

usingAdapterViewProtocol

@CheckReturnValue
fun usingAdapterViewProtocol(adapterViewProtocol: AdapterViewProtocol!): DataInteraction!

Use a different AdapterViewProtocol if the Adapter implementation does not satisfy the AdapterView contract like (@code ExpandableListView)