diff options
| author | Tim Graham <timograham@gmail.com> | 2016-01-05 19:42:12 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-01-06 19:53:15 -0500 |
| commit | b2cddeaaf448234713f393749ceb1dbe22101f39 (patch) | |
| tree | b9da843663336a16177f9fe308a60d32031ef50c | |
| parent | 7f7553dd30534d606c84952a3f6dcb64b396ce37 (diff) | |
Refs #26048 -- Fixed a flaky i18n selenium test: test_javascript_gettext.
| -rw-r--r-- | tests/view_tests/tests/test_i18n.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/view_tests/tests/test_i18n.py b/tests/view_tests/tests/test_i18n.py index fc0dd88326..269a7d7075 100644 --- a/tests/view_tests/tests/test_i18n.py +++ b/tests/view_tests/tests/test_i18n.py @@ -277,6 +277,7 @@ class JavascriptI18nTests(LiveServerTestCase): except Exception as e: raise unittest.SkipTest('Selenium webdriver "%s" not installed or ' 'not operational: %s' % (cls.webdriver_class, str(e))) + cls.selenium.implicitly_wait(10) super(JavascriptI18nTests, cls).setUpClass() @classmethod |
