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.8.tar.gz (64.0 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.8-py2.py3-none-any.whl (65.3 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

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

File hashes

Hashes for pypom-axe-0.0.8.tar.gz
Algorithm Hash digest
SHA256 d0215f8992c5e47b2c4aa372e5e86bfb45a55c5aa66230ebbd0fe196a4044334
MD5 48fc6d47f79c82c7e55a60ec009af283
BLAKE2b-256 e331ee0c888af32dfc95ab4d1db7ffd7fee8fc3845c423c40b28fb4cdfd24058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypom_axe-0.0.8-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ce77d2d790a94a298858d52db8bbdc441e32832016afeccd78ecdd47fc452f92
MD5 c51db48807b02dd7f5fd58793eb53416
BLAKE2b-256 49cd2d85541d5a1b16d2d26073cbcdcea1105d016885f015d08d378f830805a1

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 Pingdom Monitoring Sentry Error logging StatusPage Status page