Cypress - Test Organization and Patterns
Given this Cypress test snippet using a pattern:
cy.get('.btn').click()
cy.get('.input').type('hello')
cy.get('.btn').click()
What is a benefit of using a pattern to avoid repeating cy.get('.btn').click() twice?