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

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

Issue 2926633002: Explicitly setting story names for all smoothness benchmarks (Closed)
Patch Set: Explicitly setting story names for all smoothness benchmarks 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
« no previous file with comments | « tools/perf/page_sets/maps.py ('k') | tools/perf/page_sets/simple_mobile_sites.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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 from telemetry.page import page as page_module 4 from telemetry.page import page as page_module
5 from telemetry.page import shared_page_state 5 from telemetry.page import shared_page_state
6 from telemetry import story 6 from telemetry import story
7 7
8 8
9 class PathologicalMobileSitesPage(page_module.Page): 9 class PathologicalMobileSitesPage(page_module.Page):
10 10
11 def __init__(self, url, page_set): 11 def __init__(self, url, page_set):
12 super(PathologicalMobileSitesPage, self).__init__( 12 super(PathologicalMobileSitesPage, self).__init__(
13 url=url, page_set=page_set, credentials_path='data/credentials.json', 13 url=url, page_set=page_set, credentials_path='data/credentials.json',
14 shared_page_state_class=shared_page_state.SharedMobilePageState) 14 shared_page_state_class=shared_page_state.SharedMobilePageState,
15 name=url)
15 16
16 def RunPageInteractions(self, action_runner): 17 def RunPageInteractions(self, action_runner):
17 with action_runner.CreateGestureInteraction('ScrollAction'): 18 with action_runner.CreateGestureInteraction('ScrollAction'):
18 action_runner.ScrollPage() 19 action_runner.ScrollPage()
19 20
20 21
21 class PathologicalMobileSitesPageSet(story.StorySet): 22 class PathologicalMobileSitesPageSet(story.StorySet):
22 23
23 """Pathologically bad and janky sites on mobile.""" 24 """Pathologically bad and janky sites on mobile."""
24 25
25 def __init__(self): 26 def __init__(self):
26 super(PathologicalMobileSitesPageSet, self).__init__( 27 super(PathologicalMobileSitesPageSet, self).__init__(
27 archive_data_file='data/pathological_mobile_sites.json', 28 archive_data_file='data/pathological_mobile_sites.json',
28 cloud_storage_bucket=story.PARTNER_BUCKET) 29 cloud_storage_bucket=story.PARTNER_BUCKET,
30 verify_names=True)
29 31
30 sites = ['http://edition.cnn.com', 32 sites = ['http://edition.cnn.com',
31 'http://m.espn.go.com/nhl/rankings', 33 'http://m.espn.go.com/nhl/rankings',
32 'http://recode.net', 34 'http://recode.net',
33 'http://sports.yahoo.com/', 35 'http://sports.yahoo.com/',
34 'http://www.latimes.com', 36 'http://www.latimes.com',
35 ('http://www.pbs.org/newshour/bb/' 37 ('http://www.pbs.org/newshour/bb/'
36 'much-really-cost-live-city-like-seattle/#the-rundown'), 38 'much-really-cost-live-city-like-seattle/#the-rundown'),
37 ('http://www.theguardian.com/politics/2015/mar/09/' 39 ('http://www.theguardian.com/politics/2015/mar/09/'
38 'ed-balls-tory-spending-plans-nhs-charging'), 40 'ed-balls-tory-spending-plans-nhs-charging'),
39 'http://www.zdnet.com', 41 'http://www.zdnet.com',
40 'http://www.wowwiki.com/World_of_Warcraft:_Mists_of_Pandaria', 42 'http://www.wowwiki.com/World_of_Warcraft:_Mists_of_Pandaria',
41 'https://www.linkedin.com/in/linustorvalds'] 43 'https://www.linkedin.com/in/linustorvalds']
42 44
43 for site in sites: 45 for site in sites:
44 self.AddStory(PathologicalMobileSitesPage(site, self)) 46 self.AddStory(PathologicalMobileSitesPage(site, self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/maps.py ('k') | tools/perf/page_sets/simple_mobile_sites.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698