Chromium Code Reviews| Index: tools/perf/page_sets/key_hit_test_cases.py |
| diff --git a/tools/perf/page_sets/key_hit_test_cases.py b/tools/perf/page_sets/key_hit_test_cases.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..489a36e967bac4face28716773f37c22caa1e33c |
| --- /dev/null |
| +++ b/tools/perf/page_sets/key_hit_test_cases.py |
| @@ -0,0 +1,54 @@ |
| +# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
|
nednguyen
2014/12/10 22:33:49
nit: add a blank line here
Zeeshan Qureshi
2014/12/12 01:05:30
Done.
|
| +from telemetry.page import page as page_module |
| +from telemetry.page import page_set as page_set_module |
| + |
| + |
| +class KeyHitTestCasesPage(page_module.Page): |
| + |
| + def __init__(self, url, page_set): |
| + super(KeyHitTestCasesPage, self).__init__( |
| + url=url, page_set=page_set, credentials_path = 'data/credentials.json') |
| + self.user_agent_type = 'mobile' |
| + |
| + def RunNavigateSteps(self, action_runner): |
| + action_runner.NavigateToPage(self) |
| + action_runner.Wait(2) |
| + |
| + def RunSmoothness(self, action_runner): |
| + action_runner.Wait(2) |
| + for _ in xrange(100): |
| + self.TapButton(action_runner) |
| + |
| + |
| +class PaperCalculatorHitTest(KeyHitTestCasesPage): |
|
nednguyen
2014/12/10 22:33:50
You only need this if you plan to create other pag
Zeeshan Qureshi
2014/12/12 01:05:30
I believe that's the plan, as we identify more hit
|
| + |
| + def __init__(self, page_set): |
| + super(PaperCalculatorHitTest, self).__init__( |
| + # Generated from https://github.com/zqureshi/paper-calculator |
| + # vulcanize --inline --strip paper-calculator/demo.html |
| + url='file://key_hit_test_cases/paper-calculator-no-rendering.html', |
| + page_set=page_set) |
| + |
| + def TapButton(self, action_runner): |
| + interaction = action_runner.BeginInteraction( |
| + 'Action_TapAction', is_smooth=True) |
| + action_runner.TapElement(element_function=''' |
| + document.querySelector( |
| + 'body /deep/ #outerPanels' |
| + ).querySelector( |
| + '#standard' |
| + ).shadowRoot.querySelector( |
| + 'paper-calculator-key[label="5"]' |
| + )''') |
| + interaction.End() |
| + |
| + |
| +class KeyHitTestCasesPageSet(page_set_module.PageSet): |
| + |
| + def __init__(self): |
| + super(KeyHitTestCasesPageSet, self).__init__( |
| + user_agent_type='mobile') |
| + |
| + self.AddPage(PaperCalculatorHitTest(self)) |