Is there any reason I can't run two find commands,...
# help
f
Is there any reason I can't run two find commands, one after another? If I do this:
Copy code
typescript
cell.find('igx-hint').should('not.exist')
cell.find('hr').should('not.exist')
then the second one fails with `cy.find() failed because it requires a DOM element. If I comment either one out, then it works fine.