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

Unified Diff: tools/telemetry/telemetry/page/actions/gesture_action.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
Index: tools/telemetry/telemetry/page/actions/gesture_action.py
diff --git a/tools/telemetry/telemetry/page/actions/gesture_action.py b/tools/telemetry/telemetry/page/actions/gesture_action.py
index d05f6bab4633da7c3300deb68ae4ea7a429c0d22..14ba66381e91a97d7036d1491463bdbe9ff9374c 100644
--- a/tools/telemetry/telemetry/page/actions/gesture_action.py
+++ b/tools/telemetry/telemetry/page/actions/gesture_action.py
@@ -18,9 +18,6 @@ class GestureAction(page_action.PageAction):
else:
self.wait_action = None
- assert self.wait_until is None or self.wait_action is None, (
- 'gesture cannot have wait_after and wait_until at the same time.')
-
def RunAction(self, tab):
if self.wait_action:
interaction_name = 'Action_%s' % self.__class__.__name__

Powered by Google App Engine
This is Rietveld 408576698