summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-02-10 12:30:28 -0500
committerTim Graham <timograham@gmail.com>2015-02-10 12:30:28 -0500
commita3473454ada67c0a16efeabcb78950641d4ac93c (patch)
treea5edb9795acf0ca00fe974e19ce0e92463356fc1 /docs
parentf2c104ada605d9f7f7b7435778662c16d432dc32 (diff)
Updated docs on running selenium tests.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/contributing/writing-code/unit-tests.txt9
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt
index 0e8a7fca14..5c8d749895 100644
--- a/docs/internals/contributing/writing-code/unit-tests.txt
+++ b/docs/internals/contributing/writing-code/unit-tests.txt
@@ -128,16 +128,15 @@ Going beyond that, you can specify an individual test method like this:
Running the Selenium tests
~~~~~~~~~~~~~~~~~~~~~~~~~~
-Some admin tests require Selenium 2, Firefox and Python >= 2.6 to work via a
-real Web browser. To allow those tests to run and not be skipped, you must
-install the selenium_ package (version > 2.13) into your Python path and run
-the tests with the ``--selenium`` option:
+Some tests require Selenium and a Web browser (Firefox, Google Chrome, or
+Internet Explorer). To allow those tests to be run rather than skipped, you must
+install the selenium_ package into your Python path and run the tests with the
+``--selenium`` option:
.. code-block:: bash
$ ./runtests.py --settings=test_sqlite --selenium admin_inlines
-
.. _running-unit-tests-dependencies:
Running all the tests