axe-selector

The getSelector method from axe-core 2.x

Usage no npm install needed!

<script type="module">
  import axeSelector from 'https://cdn.skypack.dev/axe-selector';
</script>

README

axe-selector

The getSelector method from axe-core 2.x as a standalone package.

The CSS selectors generated by this package are designed to be accurate, unique, and easy for humans to read/comprehend.

Installation

With npm, do:

$ npm install --save axe-selector

Usage Example

import getSelector from 'axe-selector'

// or with CommonJS:
const getSelector = require('axe-selector').default

const el = getDOMElementSomehow()

// Generate a selector.
const selector = getSelector(el)

Releasing

To create a new production release, run the following commands:

git checkout develop
git pull
git fetch --tags
git checkout -b my-release-branch
npm run release
git push

Create a pull request into master from your release branch and request a review from dequelabs/html-team

License

MPL-2.0