Click on EditText's drawable right with Espresso
问题 How could be possible to click on EditText's right drawable (check the screenshot)? I have tried several ways but I always get stuck. public static Matcher<View> withEditTextDrawable(final int resourceId) { return new BoundedMatcher<View, EditText>(EditText.class) { @Override protected boolean matchesSafely(final EditText editText) { // ???? return false; } @Override public void describeTo(Description description) { description.appendText("with drawable from resource id: "); description