This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@cypress/xpath
TypeScript icon, indicating that this package has built-in type declarations

2.0.3 • Public • Published

@cypress/xpath

Adds XPath command to Cypress.io test runner

Install with npm

npm install -D @cypress/xpath

Install with Yarn

yarn add @cypress/xpath --dev

Then include in your project's support file

require('@cypress/xpath');

Use

After installation your cy object will have xpath command.

it('finds list items', () => {
  cy.xpath('//ul[@class="todo-list"]//li').should('have.length', 3);
});

You can also chain xpath off of another command.

it('finds list items', () => {
  cy.xpath('//ul[@class="todo-list"]').xpath('./li').should('have.length', 3);
});

As with other cy commands, it is scoped by cy.within().

it('finds list items', () => {
  cy.xpath('//ul[@class="todo-list"]').within(() => {
    cy.xpath('./li').should('have.length', 3);
  });
});

note: you can test XPath expressions from DevTools console using $x(...) function, for example $x('//div') to find all divs.

See cypress/e2e/spec.cy.js

Beware the XPath // trap

In XPath the expression // means something very specific, and it might not be what you think. Contrary to common belief, // means "anywhere in the document" not "anywhere in the current context". As an example:

cy.xpath('//body').xpath('//script');

You might expect this to find all script tags in the body, but actually, it finds all script tags in the entire document, not only those in the body! What you're looking for is the .// expression which means "any descendant of the current node":

cy.xpath('//body').xpath('.//script');

The same thing goes for within:

cy.xpath('//body').within(() => {
  cy.xpath('.//script');
});

For more, see Intelligent Code Completion

License

This project is licensed under the terms of the MIT license.

Package Sidebar

Install

npm i @cypress/xpath

Weekly Downloads

40,233

Version

2.0.3

License

MIT

Unpacked Size

7.11 kB

Total Files

4

Last publish

Collaborators

  • cypress-npm-publisher