This rule disallows the usage of cy.xpath()
for selecting elements.
Examples of incorrect code for this rule:
cy.xpath('//div[@class=\"container\"]').click()
Examples of correct code for this rule:
cy.get('[data-cy="container"]').click();
Both @cypress/xpath
and cypress-xpath
are deprecated.