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

Side by Side Diff: tools/perf/page_sets/key_hit_test_cases.py

Issue 2941663002: Removing verify_names=True now that the default for verify_names is True (Closed)
Patch Set: Created 3 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from telemetry import story 5 from telemetry import story
6 6
7 from page_sets import polymer 7 from page_sets import polymer
8 8
9 class PaperCalculatorHitTest(polymer.PolymerPage): 9 class PaperCalculatorHitTest(polymer.PolymerPage):
10 10
(...skipping 22 matching lines...) Expand all
33 self.TapButton(action_runner) 33 self.TapButton(action_runner)
34 34
35 def TapButton(self, action_runner): 35 def TapButton(self, action_runner):
36 with action_runner.CreateInteraction('Action_TapAction'): 36 with action_runner.CreateInteraction('Action_TapAction'):
37 action_runner.TapElement(element_function='''window.__tapTarget''') 37 action_runner.TapElement(element_function='''window.__tapTarget''')
38 38
39 39
40 class KeyHitTestCasesPageSet(story.StorySet): 40 class KeyHitTestCasesPageSet(story.StorySet):
41 41
42 def __init__(self): 42 def __init__(self):
43 super(KeyHitTestCasesPageSet, self).__init__(verify_names=True) 43 super(KeyHitTestCasesPageSet, self).__init__()
44 44
45 self.AddStory(PaperCalculatorHitTest(self)) 45 self.AddStory(PaperCalculatorHitTest(self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/key_desktop_move_cases.py ('k') | tools/perf/page_sets/key_idle_power_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698