This rule disallows the usage of chained .get()
calls as cy.get()
always starts its search from the cy.root element.
Examples of incorrect code for this rule:
cy.get('parent').get('child')
Examples of correct code for this rule:
cy.get('parent')
.find('child')