Skip to content

Files

Latest commit

 

History

History
25 lines (15 loc) · 591 Bytes

no-xpath.md

File metadata and controls

25 lines (15 loc) · 591 Bytes

Disallow using cy.xpath() calls (cypress/no-xpath)

This rule disallows the usage of cy.xpath() for selecting elements.

Rule Details

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();

Further Reading

Both @cypress/xpath and cypress-xpath are deprecated.

See the Cypress Best Practices guide.