1
0
mirror of https://github.com/django/django.git synced 2025-01-27 10:39:40 +00:00

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
This commit is contained in:
Julien Phalip 2011-12-29 07:28:21 +00:00
parent 953a471a21
commit ec07a30e82

View File

@ -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