summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJulien Phalip <jphalip@gmail.com>2011-12-29 07:28:21 +0000
committerJulien Phalip <jphalip@gmail.com>2011-12-29 07:28:21 +0000
commitec07a30e821ada170904df8901787e05b7959594 (patch)
tree754037e14159bfdf33346023db0fd85052c260a4 /docs
parent953a471a21444be9bcbc60537853c058d2b23314 (diff)
Indicated the exact version that is required to use the "WebDriverWait" example in the testing doc.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17285 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index acb24c0a98..a39fc315be 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -1856,7 +1856,7 @@ out the `full reference`_ for more details.
need to check that a response is received by Selenium and that the next
page is loaded before proceeding further with the execution of the tests.
This can be achieved, for example, by making Selenium wait until the
- `<body>` HTML tag is found in the response:
+ `<body>` HTML tag is found in the response (requires Selenium > 2.13):
.. code-block:: python