11

I have been playing around with Espresso tests for couple weeks now and I finally decided to start testing Fragments.

Immediately I ran into a problem, how do I get current activity?

My app uses data from login so I can't launch the activity with test rule. Simply put, is there something similar to getActivity() when doing espresso tests?

piotrek1543
  • 19,130
  • 7
  • 81
  • 94
user3050720
  • 443
  • 2
  • 6
  • 14

2 Answers2

29

I usually get it like this, it looks (and probably is) hacky but, hey, it works

import static android.support.test.InstrumentationRegistry.getInstrumentation;

public class MyTest {

    private Activity getActivityInstance(){
        final Activity[] currentActivity = {null};

        getInstrumentation().runOnMainSync(new Runnable(){
            public void run(){
                Collection<Activity> resumedActivity = ActivityLifecycleMonitorRegistry.getInstance().getActivitiesInStage(Stage.RESUMED);
                Iterator<Activity> it = resumedActivity.iterator();
                currentActivity[0] = it.next();
            }
        });

        return currentActivity[0];
    }
}
JulianHarty
  • 3,178
  • 3
  • 32
  • 46
lelloman
  • 13,883
  • 5
  • 63
  • 85
7

Here is lelloman's solution with a slight change in Kotlin:

import android.app.Activity
import androidx.test.platform.app.InstrumentationRegistry.getInstrumentation
import androidx.test.runner.lifecycle.ActivityLifecycleMonitorRegistry
import androidx.test.runner.lifecycle.Stage

object EspressoHelper {
    fun getCurrentActivity(): Activity? {
        var currentActivity: Activity? = null
        getInstrumentation().runOnMainSync { run { currentActivity = ActivityLifecycleMonitorRegistry.getInstance().getActivitiesInStage(Stage.RESUMED).elementAtOrNull(0) } }
        return currentActivity
    }
}
Oliver Metz
  • 2,712
  • 2
  • 20
  • 32