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

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

Issue 277143003: Add NavigateToPage API for action_runner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 7 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
« no previous file with comments | « tools/perf/page_sets/plus_alt_posts_photos.py ('k') | tools/perf/page_sets/top_25.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # pylint: disable=W0401,W0614 4 # pylint: disable=W0401,W0614
5 from telemetry.page.actions.all_page_actions import * 5 from telemetry.page.actions.all_page_actions import *
6 from telemetry.page import page as page_module 6 from telemetry.page import page as page_module
7 from telemetry.page import page_set as page_set_module 7 from telemetry.page import page_set as page_set_module
8 8
9 class PolymerPage(page_module.Page): 9 class PolymerPage(page_module.Page):
10 10
11 def __init__(self, url, page_set): 11 def __init__(self, url, page_set):
12 super(PolymerPage, self).__init__( 12 super(PolymerPage, self).__init__(
13 url=url, 13 url=url,
14 page_set=page_set) 14 page_set=page_set)
15 self.archive_data_file = "data/polymer.json" 15 self.archive_data_file = "data/polymer.json"
16 self.script_to_evaluate_on_commit = ''' 16 self.script_to_evaluate_on_commit = '''
17 document.addEventListener("polymer-ready", function() { 17 document.addEventListener("polymer-ready", function() {
18 window.__polymer_ready = true; 18 window.__polymer_ready = true;
19 }); 19 });
20 ''' 20 '''
21 21
22 def RunNavigateSteps(self, action_runner): 22 def RunNavigateSteps(self, action_runner):
23 action_runner.RunAction(NavigateAction()) 23 action_runner.NavigateToPage(self)
24 action_runner.RunAction(WaitAction( 24 action_runner.RunAction(WaitAction(
25 { 'javascript': "window.__polymer_ready" })) 25 { 'javascript': "window.__polymer_ready" }))
26 26
27 27
28 class PolymerCalculatorPage(PolymerPage): 28 class PolymerCalculatorPage(PolymerPage):
29 29
30 def __init__(self, page_set): 30 def __init__(self, page_set):
31 super(PolymerCalculatorPage, self).__init__( 31 super(PolymerCalculatorPage, self).__init__(
32 url='http://localhost:8000/components/paper-calculator/demo.html', 32 url='http://localhost:8000/components/paper-calculator/demo.html',
33 page_set=page_set) 33 page_set=page_set)
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 119
120 class PolymerPageSet(page_set_module.PageSet): 120 class PolymerPageSet(page_set_module.PageSet):
121 121
122 def __init__(self): 122 def __init__(self):
123 super(PolymerPageSet, self).__init__( 123 super(PolymerPageSet, self).__init__(
124 user_agent_type='mobile', 124 user_agent_type='mobile',
125 archive_data_file='data/polymer.json') 125 archive_data_file='data/polymer.json')
126 126
127 self.AddPage(PolymerCalculatorPage(self)) 127 self.AddPage(PolymerCalculatorPage(self))
128 self.AddPage(PolymerShadowPage(self)) 128 self.AddPage(PolymerShadowPage(self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/plus_alt_posts_photos.py ('k') | tools/perf/page_sets/top_25.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698