Closed as not planned
Closed as not planned
Description
According to the Cypress documentation on clear, it is considered a correct usage to chain the clear
command with the type
command, and vice versa:
cy.get('input[name="name"]').clear().type('Jane Lane')
cy.get('input[name="name"]').type('Jane Lane').clear()
As of v2.13.2
, the current lint rule does not allow this usage.