Index: tools/testing/run_selenium.py |
=================================================================== |
--- tools/testing/run_selenium.py (revision 3477) |
+++ tools/testing/run_selenium.py (working copy) |
@@ -49,6 +49,8 @@ |
lambda driver : ('PASS' in driver.page_source) or |
('FAIL' in driver.page_source)) |
source = browser.page_source |
+ except selenium.common.exceptions.TimeoutException: |
+ source = 'FAIL' |
Bill Hesse
2012/01/22 20:52:02
Can this be 'FAIL (timeout)', or does it need to b
Emily Fortuna
2012/01/23 18:27:41
Fixed!
On 2012/01/22 20:52:02, Bill Hesse wrote:
|
finally: |
# A timeout exception is thrown if nothing happens within the time limit. |
if browser != 'chrome': |