| Index: tools/testing/run_selenium.py
|
| ===================================================================
|
| --- tools/testing/run_selenium.py (revision 3517)
|
| +++ 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 (timeout)'
|
| finally:
|
| # A timeout exception is thrown if nothing happens within the time limit.
|
| if browser != 'chrome':
|
|
|