Cypress - Selecting Elements
Given the HTML snippet:
What will
<ul> <li class='item'>Apple</li> <li class='item'>Banana</li> <li class='item'>Cherry</li> </ul>
What will
cy.get('.item').should('have.length', 3) check?