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

Unified Diff: tools/telemetry/telemetry/page/actions/action_runner.py

Issue 321253004: Kill wait_until support, which is unused once ClickElementAction is (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
« no previous file with comments | « no previous file | tools/telemetry/telemetry/page/actions/gesture_action.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/page/actions/action_runner.py
diff --git a/tools/telemetry/telemetry/page/actions/action_runner.py b/tools/telemetry/telemetry/page/actions/action_runner.py
index e937c315e11761457337f6b1339c65802eacbc09..50f2999a175cc055e7fe1d147b9cd33c2578c036 100644
--- a/tools/telemetry/telemetry/page/actions/action_runner.py
+++ b/tools/telemetry/telemetry/page/actions/action_runner.py
@@ -18,9 +18,8 @@ class ActionRunner(object):
# TODO(nednguyen): remove this (or make private) when
# crbug.com/361809 is marked fixed
def RunAction(self, action):
- if not action.WillWaitAfterRun():
- action.WillRunAction(self._tab)
- action.RunActionAndMaybeWait(self._tab)
+ action.WillRunAction(self._tab)
+ action.RunAction(self._tab)
def BeginInteraction(self, label, is_smooth=False, is_responsive=False):
"""Marks the beginning of an interaction record.
« no previous file with comments | « no previous file | tools/telemetry/telemetry/page/actions/gesture_action.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698