diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-19 20:32:58 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-19 20:32:58 +0000 |
commit | 2e028a0889a45e034177aedca54fc01b9f9166b0 (patch) | |
tree | 10852c98cc87363680f26ddcbf22127849843f31 /chrome/test/reliability | |
parent | 081f1cec17b1fd8054b532ac2b82b13b739c9949 (diff) | |
download | chromium_src-2e028a0889a45e034177aedca54fc01b9f9166b0.zip chromium_src-2e028a0889a45e034177aedca54fc01b9f9166b0.tar.gz chromium_src-2e028a0889a45e034177aedca54fc01b9f9166b0.tar.bz2 |
Add automation call to wait for multiple navigations.
Convert one ErrorPage UI test to use it.
The rest of the tests will require more work.
TEST=Covered by ui_tests.
http://crbug.com/19361, http://crbug.com/19395
Review URL: http://codereview.chromium.org/174015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23729 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/reliability')
-rw-r--r-- | chrome/test/reliability/page_load_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/reliability/page_load_test.cc b/chrome/test/reliability/page_load_test.cc index b3fbeb6..9d158ab5 100644 --- a/chrome/test/reliability/page_load_test.cc +++ b/chrome/test/reliability/page_load_test.cc @@ -193,7 +193,7 @@ class PageLoadTest : public UITest { // TabProxy should be released before Browser is closed. scoped_refptr<TabProxy> tab_proxy(GetActiveTab()); if (tab_proxy.get()) { - result = tab_proxy->NavigateToURLWithTimeout(url, g_timeout_ms, + result = tab_proxy->NavigateToURLWithTimeout(url, 1, g_timeout_ms, &is_timeout); } |