Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(530)

Unified Diff: tools/perf/page_sets/startup_pages.py

Issue 321563003: Add Wait* API to ActionRunner to wrap over WaitAction. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/perf/page_sets/startup_pages.py
diff --git a/tools/perf/page_sets/startup_pages.py b/tools/perf/page_sets/startup_pages.py
index 6fe730548f048ae9051f9147e2abb2b6c5f69dd6..0313c98d1fdcef255aaee42cbbfd67b68b68bfa3 100644
--- a/tools/perf/page_sets/startup_pages.py
+++ b/tools/perf/page_sets/startup_pages.py
@@ -15,7 +15,7 @@ class StartedPage(page_module.Page):
self.startup_url = startup_url
def RunNavigateSteps(self, action_runner):
- action_runner.RunAction(WaitAction({'seconds': 10}))
+ action_runner.Wait(10)
class StartupPagesPageSet(page_set_module.PageSet):

Powered by Google App Engine
This is Rietveld 408576698