Python library to integrate axe and selenium for web accessibility testing.
Project description
axe-selenium-python-dev was forked from https://github.com/mozilla-services/axe-selenium-python on date 29/10/2020 all credits to them, there was no official pypi distribution available which supports axe-core 3.3.2 so took the opportunity to create this to support others like us
This version of axe-selenium-python-dev supports all changes in repo https://github.com/mozilla-services/axe-selenium-python before date 29/10/2020
This version of axe-selenium-python-dev is using axe-core@3.3.2.
Requirements
You will need the following prerequisites in order to use axe-selenium-python:
selenium >= 3.0.0
Python 2.7 or 3.6
The appropriate driver for the browser you intend to use, downloaded and added to your path, e.g. geckodriver for Firefox:
geckodriver downloaded and added to your PATH
Installation
To install axe-selenium-python-dev:
$ pip install axe-selenium-python-dev
Usage
from selenium import webdriver
from axe_selenium_python import Axe
def test_google():
driver = webdriver.Firefox()
driver.get("http://www.google.com")
axe = Axe(driver)
# Inject axe-core javascript into page.
axe.inject()
# Run axe accessibility checks.
results = axe.run()
# Write results to file
axe.write_results(results, 'a11y.json')
driver.close()
# Assert no violations are found
assert len(results["violations"]) == 0, axe.report(results["violations"])
The method axe.run() accepts two parameters: context and options.
For more information on context and options, view the aXe documentation here.
Resources
CHANGELOG
version 1.2.0
Updated to install node modules
version 1.1.1
Updated readme
version 1.1.0
Created package.json file to maintain axe-core dependency
version 1.0.0
Forked https://github.com/mozilla-services/axe-selenium-python updated code and initial pypi deploy
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for axe-selenium-python-dev-1.4.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b12c6aaebaf430baa0917917cbca4a01bc6b6b4175e3b0fe3ebb0f3c634bfc0 |
|
MD5 | db30612cd048bfb9b886d0f1e472c054 |
|
BLAKE2b-256 | d478af6b582931450629e92a6fc09cd51cb41330dd8e1ed42822ab6a802399d5 |
Hashes for axe_selenium_python_dev-1.4.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26d2ca317b2881b0607c2fe5cfaa19928de386dc4860fa24ff45bf375c08bfd2 |
|
MD5 | f65198360a20e59b9bed36bf705ed4e5 |
|
BLAKE2b-256 | 124bf918aa46603cc8648baa0d92f9f744925d30a59adcb0d60e3745ed511db5 |