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.9.tar.gz (64.1 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.9-py2.py3-none-any.whl (65.4 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

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

File hashes

Hashes for pypom-axe-0.0.9.tar.gz
Algorithm Hash digest
SHA256 ff9799db48e1159c2ad457cec269faa4775a3f4bedb30d6d4ab599870499cdfd
MD5 10cc56a0b594c02b75fda74542e9eb4f
BLAKE2b-256 d4c6472304289f7e983136c2e372628ec1e75efbc8ffa99db4893ed0dbae4d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypom_axe-0.0.9-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6dbc7c8e3274fd93f26f07e72cb0ee7cd8a2c10d012a7d0b933ea16e000b6796
MD5 71a5278df61b6cbdfd40066fcf240374
BLAKE2b-256 ae2332ab8fbcba4adb2f32bdd4e3f3101c2af644341f547854031fa64f0df240

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