summaryrefslogtreecommitdiff
path: root/docs/topics/testing
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-06-26 14:22:54 +0200
committerGitHub <noreply@github.com>2023-06-26 14:22:54 +0200
commit370a021780b25123a410ffa771ed7d88b8760570 (patch)
tree8db5b16bbda406903d2b8d70e55e674ff339f5ef /docs/topics/testing
parent3152f9de47a317d658ebee6d5b517b7e1258aa1f (diff)
Refs #34233 -- Bumped minimum supported version of Selenium to 4.8.0.
This bumps minimum supported versions of selenium to the first release to support Python 3.10.
Diffstat (limited to 'docs/topics/testing')
-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 325fcf9c53..561b6eed0e 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 >= 3.8.0"
+ $ python -m pip install "selenium >= 4.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