Im running into a problem trying to write UI tests using Earl Grey, specifically how to perform a tap on a certain UITabBarItem.
I noticed that tab bar items don't allow for accessibility ID's and labels to be set in the storyboard, and I've tried setting the accessibility label at runtime using barItem.accessibilityLabel = "label"
but that does not work when referencing the item using EarlGrey.select(elementWithMatcher: grey_accessibilityLabel("label")).perform(grey_tap())
Is there a way to accomplish this?