Skip to main content

pypom-axe integrates the aXe accessibility testing API with PyPOM.

License PyPI wheel Issues

Requirements

You will need the following prerequisites in order to use pypom-axe:

  • Python 2.7 or 3.6

  • PyPOM >= 1.2.0

Installation

To install pypom-axe:

$ pip install pypom-axe

Usage

pypom-axe will run the aXe accessibility checks by default whenever its wait_for_page_to_load() method is called.

If you overload wait_for_page_to_load(), you will need to call super([YOUR CLASS NAME], self).wait_for_page_to_load() within your overloaded method.

base.py

from pypom_axe import AxePage as Page

class Base(Page):

def wait_for_page_to_load(self, context=None, options=None, impact=None):
  super(Base, self).wait_for_page_to_load()
  self.wait.until(lambda s: self.seed_url in s.current_url)
  return self

You also have the option to customize the accessibility analysis using the parameters context, options, and impact.

context and options directly reflect the parameters used in axe-core. For more information on context and options, view the aXe documentation here.

The third parameter, impact, allows you to filter violations by their impact level.

The options are 'critical', 'serious' and 'minor', with the default value set to None.

This will filter violations for the impact level specified, and all violations with a higher impact level.

from pypom_axe import AxePage as Page

class Base(Page):

def wait_for_page_to_load(self, context=None, options=None, impact=None):
  super(Base, self).wait_for_page_to_load(None, None, 'serious')
  self.wait.until(lambda s: self.seed_url in s.current_url)
  return self

Resources

CHANGELOG

version 0.0.7

  • Modified impact_included class method to reflect changes to the aXe API:

  • There are now only 3 impact levels: 'critical', 'serious', and 'minor'

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypom-axe-0.0.7.tar.gz (63.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pypom_axe-0.0.7-py2.py3-none-any.whl (65.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pypom-axe-0.0.7.tar.gz.

File metadata

  • Download URL: pypom-axe-0.0.7.tar.gz
  • Upload date:
  • Size: 63.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pypom-axe-0.0.7.tar.gz
Algorithm Hash digest
SHA256 224b0e5c1c8e74937fe2a44843eba17be92b7b48ea33af9e5e300fbbd77b6e5b
MD5 69f9a90834ba878030338933f2d5a2a5
BLAKE2b-256 eb6ad2f3cc218ffe44a0d566ddbcea49d880975851b81aa62856dd98f671f3b4

See more details on using hashes here.

File details

Details for the file pypom_axe-0.0.7-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pypom_axe-0.0.7-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 078311ea1effe47fc094a12685e1d55d3066c69a45988394818b2f3eb693627b
MD5 94219bc41db312e316c2db4325a852da
BLAKE2b-256 752d50412644919d918b09231fd197d68e637ccc4a4a8babdd25b59f965bd5a0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page