Ich versuche, die Anzahl der Elemente mit dem gleichen ridandroid Espresso: Gesamtanzahl der Elemente mit samerid nicht in Adapter Ansicht
die Lösungen zu bekommen hier How to get count of items with same ids which are not in adapter view hilft mir nicht.
static int counter = 0;
public static Matcher<View> withIdAndDisplayed(final int id) {
Checks.checkNotNull(id);
return new TypeSafeMatcher<View>() {
@Override
public void describeTo(Description description) {
description.appendText("with item id: " + id);
}
@Override
public boolean matchesSafely(View view) {
if ((view.getId() == id) && (view.getGlobalVisibleRect(new Rect())
&& withEffectiveVisibility(ViewMatchers.Visibility.VISIBLE).matches(view))){
counter++;
return true;
}
return false;
}
};
}