Cypress - Selecting Elements
Given the HTML:
What will
<div class='container'> <button class='btn primary'>Submit</button> <button class='btn secondary'>Cancel</button> </div>
What will
cy.get('.btn.primary').should('contain', 'Submit') check?