I was wondering about this scenario:
I have a list of records, list items, and i want to do something on the items. The problem is, that i believe that when i query the items, sometimes I might have zero items, and other times I won't.
When i don't have any items, cy.get or cy.get(..).find(..) will timeout and the test will fail, but i do not want it to fail, but continue.
I have tried to chain cy.get/cy.get.find with each, but I do not think this would be possible.