You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,8 @@ You will need the following prerequisites in order to use axe-selenium-python:
29
29
30
30
- selenium >= 3.0.0
31
31
- Python 2.7 or 3.6
32
-
- `geckodriver <https://github.com/mozilla/geckodriver/releases>`_ downloaded and `added to your PATH <https://stackoverflow.com/questions/40208051/selenium-using-python-geckodriver-executable-needs-to-be-in-path#answer-40208762>`_
32
+
- The appropriate driver for the browser you intend to use, downloaded and added to your path, e.g. geckodriver for Firefox:
33
+
- `geckodriver <https://github.com/mozilla/geckodriver/releases>`_ downloaded and `added to your PATH <https://stackoverflow.com/questions/40208051/selenium-using-python-geckodriver-executable-needs-to-be-in-path#answer-40208762>`_
33
34
34
35
Installation
35
36
------------
@@ -73,12 +74,11 @@ Contributing
73
74
74
75
Fork the repository and submit PRs with bug fixes and enhancements;
75
76
contributions are very welcome. You can run the tests using
76
-
`Docker<https://www.docker.com/>`_:
77
+
`tox<https://tox.readthedocs.io/en/latest/>`_:
77
78
78
79
.. code-block:: bash
79
80
80
-
$ docker build -t axe-selenium-python .
81
-
$ docker run -it axe-selenium-python tox
81
+
$ tox
82
82
83
83
Resources
84
84
---------
@@ -117,7 +117,7 @@ version 1.2.3
117
117
118
118
version 1.2.1
119
119
**************
120
-
- Updated axe.min.js to ``axe-core@2.6.1``
120
+
- Updated axe to ``axe-core@2.6.1``
121
121
- Modified impact_included class method to reflect changes to the aXe API:
122
122
- There are now only 3 impact levels: 'critical', 'serious', and 'minor'
123
123
@@ -132,6 +132,7 @@ version 0.0.3
132
132
- Added run method to Axe class to simplify the usage in existing test suites
133
133
- run method includes the ability to set what impact level to test for: 'minor', 'moderate', 'severe', 'critical'
0 commit comments