Cannot tap on UICollectionViewCell

Hi,

I have a collection view with a custom cells.
A cell in this table view has an identifier “myCell”.

I am able to tap on it by using Xcode UI Testing:
app.scrollViews.otherElements.collectionViews.childrenMatchingType(.StaticText).matchingIdentifier("myCell").elementBoundByIndex(0).tap()

However, when I click “tap” in the Appium inspector in this cell, nothing happens.
What could be the reason? Should I configure the collection view somehow specifically?

Thanks,
Os