Cypress - Selecting Elements
What will be the result of the following Cypress code?
Assuming the buttons are:
cy.get('button').eq(1).should('have.text', 'Submit')Assuming the buttons are:
<button>Cancel</button> <button>Submit</button> <button>Reset</button>
