├── .circleci └── config.yml ├── .gitignore ├── .npmrc ├── LICENSE.md ├── README.md ├── cypress.config.js ├── cypress ├── e2e │ ├── index.html │ └── spec.cy.js ├── fixtures │ └── example.json └── support │ ├── commands.js │ └── index.js ├── images └── cypress-xpath-reference.gif ├── package.json ├── renovate.json └── src ├── index.d.ts └── index.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/cypress/e2e/index.html -------------------------------------------------------------------------------- /cypress/e2e/spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/cypress/e2e/spec.cy.js -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /images/cypress-xpath-reference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/images/cypress-xpath-reference.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/cypress-xpath/HEAD/src/index.js --------------------------------------------------------------------------------