Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ axe-selenium-python

axe-selenium-python integrates aXe and selenium to enable automated web accessibility testing.

**This version of axe-selenium-python is using axe-core@3.3.2.**
**This version of axe-selenium-python is using axe-core@3.4.0.**

.. image:: https://img.shields.io/badge/license-MPL%202.0-blue.svg
:target: https://github.com/mozilla-services/axe-selenium-python/blob/master/LICENSE.txt
Expand Down
6 changes: 3 additions & 3 deletions axe_selenium_python/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions axe_selenium_python/tests/test_axe.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_run_axe_sample_page_firefox(firefox_driver):
"""Run axe against sample page and verify JSON output is as expected."""
data = _perform_axe_run(firefox_driver)

assert len(data["inapplicable"]) == 60
assert len(data["inapplicable"]) == 58
assert len(data["incomplete"]) == 0
assert len(data["passes"]) == 7
assert len(data["violations"]) == 8
Expand All @@ -51,7 +51,7 @@ def test_run_axe_sample_page_chrome(chrome_driver):
"""Run axe against sample page and verify JSON output is as expected."""
data = _perform_axe_run(chrome_driver)

assert len(data["inapplicable"]) == 60
assert len(data["inapplicable"]) == 58
assert len(data["incomplete"]) == 0
assert len(data["passes"]) == 7
assert len(data["violations"]) == 8
Expand Down