summaryrefslogtreecommitdiff
path: root/docs/topics/testing/tools.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-06-13 10:12:52 +0200
committerGitHub <noreply@github.com>2023-06-13 10:12:52 +0200
commit06881341d48dd17a4fdf25afc96991de4fb3b1ac (patch)
tree8d9ccfc72cf99ac8c8d76d59a98d1a8d6fc225d6 /docs/topics/testing/tools.txt
parentdecbfa834ff2c981f945934e0037edfcfdae3bf8 (diff)
Refs #30220 -- Bumped required version of Selenium to 3.8.0.
Follow up to 8d010f39869f107820421631111417298d1c5bb9.
Diffstat (limited to 'docs/topics/testing/tools.txt')
-rw-r--r--docs/topics/testing/tools.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index b9a48360b2..325fcf9c53 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -1035,7 +1035,7 @@ First of all, you need to install the :pypi:`selenium` package:
.. console::
- $ python -m pip install selenium
+ $ python -m pip install "selenium >= 3.8.0"
Then, add a ``LiveServerTestCase``-based test to your app's tests module
(for example: ``myapp/tests.py``). For this example, we'll assume you're using