├── .github ├── dependabot.yml └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── axe_selenium_python ├── __init__.py ├── axe.py ├── package-lock.json └── package.json ├── package.json ├── pyproject.toml ├── tests ├── __init__.py ├── requirements │ └── tests.txt ├── src │ └── axe.min.js ├── test_axe.py └── test_page.html └── tox.ini /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/README.rst -------------------------------------------------------------------------------- /axe_selenium_python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/axe_selenium_python/__init__.py -------------------------------------------------------------------------------- /axe_selenium_python/axe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/axe_selenium_python/axe.py -------------------------------------------------------------------------------- /axe_selenium_python/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/axe_selenium_python/package-lock.json -------------------------------------------------------------------------------- /axe_selenium_python/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/axe_selenium_python/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/tests/requirements/tests.txt -------------------------------------------------------------------------------- /tests/src/axe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/tests/src/axe.min.js -------------------------------------------------------------------------------- /tests/test_axe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/tests/test_axe.py -------------------------------------------------------------------------------- /tests/test_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/tests/test_page.html -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-commons/axe-selenium-python/HEAD/tox.ini --------------------------------------------------------------------------------