Index: chrome/test/functional/infobars.py |
=================================================================== |
--- chrome/test/functional/infobars.py (revision 133718) |
+++ chrome/test/functional/infobars.py (working copy) |
@@ -208,7 +208,12 @@ |
username = creds['username'] |
password = creds['password'] |
test_utils.GoogleAccountsLogin(self, username, password, tab_index, windex) |
- self.WaitUntilNavigationCompletes(tab_index=tab_index, windex=windex) |
+ # TODO(dyu): Use WaitUntilNavigationCompletes after investigating |
+ # crbug.com/124877 |
+ #self.WaitUntilNavigationCompletes(tab_index=tab_index, windex=windex) |
Nirnimesh
2012/04/24 20:13:09
remove commented out code. the TODO is fine.
|
+ self.WaitUntil( |
+ lambda: self.GetDOMValue('document.readyState'), |
+ expect_retval='complete') |
def _PerformActionOnInfobar(self, action): |
"""Perform an action on the infobar: accept, cancel, or dismiss. |