Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/burnworks/axe-auto-reporter
Automated accessibility testing script using @axe-core/puppeteer, outputting results as HTML.
https://github.com/burnworks/axe-auto-reporter
a11y a11y-testing accessibility axe-core
Last synced: about 2 months ago
JSON representation
Automated accessibility testing script using @axe-core/puppeteer, outputting results as HTML.
- Host: GitHub
- URL: https://github.com/burnworks/axe-auto-reporter
- Owner: burnworks
- License: mit
- Created: 2023-10-26T13:02:19.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-15T06:41:50.000Z (11 months ago)
- Last Synced: 2024-02-15T07:31:13.354Z (11 months ago)
- Topics: a11y, a11y-testing, accessibility, axe-core
- Language: HTML
- Homepage:
- Size: 118 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# axe-auto-reporter
Automated accessibility testing script using @axe-core/puppeteer, outputting results as HTML.
[@axe-core/puppeteer](https://github.com/dequelabs/axe-core-npm/blob/develop/packages/puppeteer/README.md) を使用して、テキストファイルで作成した URL リストに対して自動的にアクセシビリティテストを実行し、その結果を HTML ファイルとして保存するスクリプトです。
## Getting Started
Install Node.js if you haven't already.
```sh
git clone https://github.com/burnworks/axe-auto-reporter.git
cd axe-auto-reporter
npm install
```### Create `urls.txt`
Rename `urls.sample.txt` to `urls.txt` and edit it to create a list of URLs you wish to test. Separate each URL with a newline.
`urls.sample.txt` を `urls.txt` にリネームした上で編集し、テストを実行したいURLのリストを作ってください。URL は改行で区切ります。
### Run Tests
```sh
node axe-auto-reporter.mjs
```When you run the test, a `results` directory will be created, and the test results will be stored inside. Tests are organized by the date and time they were executed, with HTML files saved in the `html` directory and JSON files in the `json` directory.
テストを実行すると `results` ディレクトリが作成され、その中にテスト結果が保存されます。
テストは実行した日時ごとにディレクトリ分けされ、さらに HTML ファイルは `html` ディレクトリに、JSON ファイルは `json` ディレクトリに保存されます。
JSON ファイルにはテスト結果のすべてが入っていますので、これを使用して他のデータを作ったりすることもできます。## Configuration
The configuration file is config.mjs. You can set the following items:
| Property | Default | Description |
| -------- | ------- | ----------- |
| `urlList` | `urls.txt` | list of URLs. |
| `locale` | `ja` | `ja`(日本語) or `en` (English) |
| `tags` | `'wcag2a', 'wcag2aa', 'wcag21a', 'wcag21aa', 'best-practice'` | Axe-core Tags setting. For more details, please refer to the [Axe Javascript Accessibility API](https://github.com/dequelabs/axe-core/blob/master/doc/API.md#axe-core-tags)
| `mode` | `pc` | `pc` or `mobile`. If you set the value to `pc`, the defaultViewport for puppeteer will be `width: 1024, height: 768`. If set to `mobile`, it will be `width: 375, height: 812`. |`config.mjs` に設定が記述されています。必要に応じて変更してください。
## Caution !
Attempting to run automated tests on too many URLs may not work properly and has the potential to impose excessive load on the destination server. If this happens, please reduce the number of URLs in urls.txt.
あまりに多くの URL に対して自動テストを実行しようとするとうまく行かないかもしれませんし、接続先のサーバに過剰な負荷をかけてしまう可能性があります。
その場合は `urls.txt` に入れる URL の数を減らすなどしてください。## Report sample
下記はレポートのサンプル画像です。
![レポートのサンプル画像](./assets/axe-auto-reporter-sample-v1.2.0.png "レポートのサンプル画像")
## Tailwind CSS
Tailwind CSS is used to generate the stylesheet for the HTML template. It does not affect the functionality of the script.
Tailwind CSS は HTML テンプレートのスタイルシートを生成するために使用しています。スクリプトの動作には関係ありません。つまり、本スクリプトを使用するだけであれば Tailwind CSS はインストール不要です。