Top "Android-espresso" questions

Espresso is a library which is used to write Android UI tests.

Espresso - withEffectiveVisibility vs isDisplayed

Whats´s the difference between isDisplayed and withEffectiveVisibility? onView(withText("Much Dagger")).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE))); onView(withText("…

unit-testing testing junit4 android-espresso
Android espresso NestedScrollView, how to scroll to bottom

I'm trying to test with Espresso a NestedScrollView but I am having an error: "Action will not be performed because …

android android-layout android-espresso android-nestedscrollview
How to debug instrumentation tests in Android Studio?

In Android Studio when I debug instrumentation test, the test won't stop on any breakpoint. Debugging unit tests works. I …

android android-studio mockito android-testing android-espresso
Why would adding espresso-contrib cause an InflateException?

In my build.gradle file I have the support library dependencies: compile "com.android.support:appcompat-v7:22.2.0" compile "com.android.support:…

android android-recyclerview android-espresso
Android Espresso Intents test randomly fail with ``init() must be called prior to using this method``

I am working on pushing a project into espresso testing currently. I have read a bunch of documents and follow …

android testing android-espresso