diff --git a/README.rst b/README.rst index 4940254..5ab12c2 100755 --- a/README.rst +++ b/README.rst @@ -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.1.2.** +**This version of axe-selenium-python is using axe-core@3.3.2.** .. 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 diff --git a/axe_selenium_python/package-lock.json b/axe_selenium_python/package-lock.json index 78cdcb6..c4291e8 100644 --- a/axe_selenium_python/package-lock.json +++ b/axe_selenium_python/package-lock.json @@ -5,9 +5,9 @@ "requires": true, "dependencies": { "axe-core": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-3.1.2.tgz", - "integrity": "sha512-e1WVs0SQu3tM29J9a/mISGvlo2kdCStE+yffIAJF6eb42FS+eUFEVz9j4rgDeV2TAfPJmuOZdRetWYycIbK7Vg==" + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-3.3.2.tgz", + "integrity": "sha512-lRdxsRt7yNhqpcXQk1ao1BL73OZDzmFCWOG0mC4tGR/r14ohH2payjHwCMQjHGbBKm924eDlmG7utAGHiX/A6g==" } } } diff --git a/axe_selenium_python/tests/test_axe.py b/axe_selenium_python/tests/test_axe.py index a6d53e9..e57f114 100755 --- a/axe_selenium_python/tests/test_axe.py +++ b/axe_selenium_python/tests/test_axe.py @@ -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"]) == 50 + assert len(data["inapplicable"]) == 60 assert len(data["incomplete"]) == 0 assert len(data["passes"]) == 7 assert len(data["violations"]) == 8 @@ -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"]) == 50 + assert len(data["inapplicable"]) == 60 assert len(data["incomplete"]) == 0 assert len(data["passes"]) == 7 assert len(data["violations"]) == 8