Index: tests/selenium/selenium_constants.py |
=================================================================== |
--- tests/selenium/selenium_constants.py (revision 26154) |
+++ tests/selenium/selenium_constants.py (working copy) |
@@ -50,6 +50,7 @@ |
# Path where reference screenshots will be stored. |
# Unfortunately we need separate reference images for certain platforms |
# for certain tests. |
+DEFAULT_SCREENSHOT_DIR = "reference" |
if sys.platform == "darwin": |
PLATFORM_SCREENSHOT_DIR = "reference-mac" |
elif sys.platform[:5] == "linux": |
@@ -68,3 +69,6 @@ |
# otherwise the OpenGL context will be clipped to the size of the window |
RESIZE_WIDTH = 1400 |
RESIZE_HEIGHT = 1200 |
+ |
+# Time to wait (after load timeout) till assume the browser has crashed. |
+MAX_SELENIUM_TEST_TIME = 60 |