Espresso is a library which is used to write Android UI tests.
With Espresso when using a custom widget view with child image views, which Matcher type can I use to select …
android android-espressoI'm trying to import import android.support.test.InstrumentationRegistry; my build.gradle file androidTestCompile 'com.android.support.test:testing-support-lib:0.1' …
android unit-testing junit android-espressoI was seeking for test frameworks for Android UI automation and I stumbled upon UI Automator and Espresso and this …
android android-espresso android-uiautomatorUsing Espresso and Hamcrest, How can I count items number available in a recyclerView? Exemple: I would like check if 5 …
android android-recyclerview android-espresso hamcrestI am trying to click the home icon in some Espresso tests via: onView(withId(android.R.id.home)).perform(…
android testing android-espressoI have to use Automated UI test tool and I am confused between using Robotium vs Google Espresso. What are …
android testing robotium android-testing android-espressoI'm new to Android and I've seen example code using these annotations. For example: @SmallTest public void testStuff() { TouchUtils.tapView(…
java android unit-testing tdd android-espressoI want get text string shown in a textview in LinearLayout. can espresso do that? If not, is there other …
automated-tests android-testing android-espressoI have a ViewPager whith items containing only a picture and a button. I can't successfully interact with the UI …
android android-viewpager android-espresso ui-testingIm trying to use Espresso to test my UI. When i login into my application, i do a call to …
android networking android-espresso idle-processing