diff options
author | nednguyen <nednguyen@google.com> | 2015-05-18 16:23:38 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-05-18 23:24:12 +0000 |
commit | a12250709309e192b30db23f5daba65c8919428e (patch) | |
tree | 6891ac8ad9855e53a29ce1c830a53cfd3262d9c6 /tools/chrome_proxy | |
parent | e19cc6a61419d38f3ec658c5e74363d77e900c09 (diff) | |
download | chromium_src-a12250709309e192b30db23f5daba65c8919428e.zip chromium_src-a12250709309e192b30db23f5daba65c8919428e.tar.gz chromium_src-a12250709309e192b30db23f5daba65c8919428e.tar.bz2 |
[Telemetry] Kill action_runner.NavigateToPage API
BUG=487800
Review URL: https://codereview.chromium.org/1139743005
Cr-Commit-Position: refs/heads/master@{#330450}
Diffstat (limited to 'tools/chrome_proxy')
-rw-r--r-- | tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/safebrowsing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/safebrowsing.py b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/safebrowsing.py index d6af6b1..ef3dfbb 100644 --- a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/safebrowsing.py +++ b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/safebrowsing.py @@ -18,7 +18,7 @@ class SafebrowsingPage(page_module.Page): self.archive_data_file = '../data/chrome_proxy_safebrowsing.json' def RunNavigateSteps(self, action_runner): - action_runner.NavigateToPage(self, timeout_in_seconds=5) + action_runner.Navigate(self.url, timeout_in_seconds=5) class SafebrowsingPageSet(page_set_module.PageSet): |