How to stub Intent.createChooser Intent using Espresso
问题 Problem I have an image inside my app, and am sharing it to any other app that can handle image sharing, and the feature is working perectlty. I am writing an Espresso UI test to intercept the intent and ensure it has the correct action and extras, but cannot seem to get it to work. Code Here is the code when creating the intent: Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra(Intent.EXTRA_STREAM, uri); intent.setType(MediaType.PNG.toString()); startActivity(Intent