Skip to content

๐Ÿ“‘ Extract the XPath from an HTML element

License

Notifications You must be signed in to change notification settings

Smartesting/get-xpath

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

16 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

npm (tag) Build Status License npm

get-xpath

๐Ÿ“‘ Extract the XPath of an HTML element

  • Works with browsers, NodeJS and DenoJS (JavaScript 5 and TypeScript)
  • No external dependencies
  • Unit-tested
  • Semantic Versioning

Install

npm i get-xpath

API

function getXPath( element: HTMLElement, options?: Partial<Options> ): string;

Usage

Notes:

  • On Node or Deno, you have to provide a way to accessing or emulating the DOM. You can use JSDOM (or any other library) for that.
  • When using TypeScript, add the value "dom" to the property "lib"of your tsconfig.json. Otherwise you will probably get errors.

Options

name type description
ignoreId boolean Do not take elements ID into account

Browser

Global:

<script crossorigin src="https://unpkg.com/get-xpath" >
<script>
console.log(
    getXPath( document.getElementById( 'foo' ) )
);
</script>

ESM:

<script type="module" >
import getXPath from 'https://unpkg.com/get-xpath/index.esm.js';
console.log(
    getXPath( document.getElementById( 'foo' ) )
);
</script>

NodeJS

/// <reference lib="dom" />
const getXPath = require('get-xpath');
console.log(
    getXPath( document.getElementById( 'foo' ) )
);

Deno

/// <reference lib="dom" />
import getXPath from 'https://unpkg.com/get-xpath/index.esm.js';
console.log(
    getXPath( document.getElementById( 'foo' ) )
);

License

MIT ยฉ Thiago Delgado Pinto

About

๐Ÿ“‘ Extract the XPath from an HTML element

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.9%
  • JavaScript 1.1%