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

Unified Diff: tools/telemetry/telemetry/page/page_test.py

Issue 473703002: [Telemetry] Remove waits in telemetry_perf_unittests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
« no previous file with comments | « tools/telemetry/telemetry/page/page.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/page/page_test.py
diff --git a/tools/telemetry/telemetry/page/page_test.py b/tools/telemetry/telemetry/page/page_test.py
index 4ae67b49eb162a5b4456c4580e5b07775ace255c..55eef74b044d9ce9b659fea25b0efff2f5580f9d 100644
--- a/tools/telemetry/telemetry/page/page_test.py
+++ b/tools/telemetry/telemetry/page/page_test.py
@@ -297,7 +297,8 @@ class PageTest(command_line.Command):
def RunPage(self, page, tab, results):
# Run actions.
interactive = self.options and self.options.interactive
- action_runner = action_runner_module.ActionRunner(tab)
+ action_runner = action_runner_module.ActionRunner(
+ tab, skip_waits=page.skip_waits)
self.WillRunActions(page, tab)
if interactive:
action_runner.PauseInteractive()
@@ -317,7 +318,8 @@ class PageTest(command_line.Command):
Runs the 'navigate_steps' page attribute as a compound action.
"""
- action_runner = action_runner_module.ActionRunner(tab)
+ action_runner = action_runner_module.ActionRunner(
+ tab, skip_waits=page.skip_waits)
page.RunNavigateSteps(action_runner)
def IsExiting(self):
« no previous file with comments | « tools/telemetry/telemetry/page/page.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698