1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 2015 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.
from telemetry.page import page as page_module
from telemetry.page import page_set as page_set_module
class PathologicalMobileSitesPage(page_module.Page):
def __init__(self, url, page_set):
super(PathologicalMobileSitesPage, self).__init__(
url=url, page_set=page_set, credentials_path='data/credentials.json')
self.user_agent_type = 'mobile'
self.archive_data_file = 'data/pathological_mobile_sites.json'
def RunPageInteractions(self, action_runner):
with action_runner.CreateGestureInteraction('ScrollAction'):
action_runner.ScrollPage()
class PathologicalMobileSitesPageSet(page_set_module.PageSet):
"""Pathologically bad and janky sites on mobile."""
def __init__(self):
super(PathologicalMobileSitesPageSet, self).__init__(
user_agent_type='mobile',
archive_data_file='data/pathological_mobile_sites.json',
bucket=page_set_module.PARTNER_BUCKET)
sites = ['http://edition.cnn.com',
'http://m.espn.go.com/nhl/rankings',
'http://recode.net',
'http://sports.yahoo.com/',
'http://www.latimes.com',
('http://www.pbs.org/newshour/bb/'
'much-really-cost-live-city-like-seattle/#the-rundown'),
('http://www.theguardian.com/politics/2015/mar/09/'
'ed-balls-tory-spending-plans-nhs-charging'),
'http://www.zdnet.com',
'http://www.wowwiki.com/World_of_Warcraft:_Mists_of_Pandaria',
'https://www.linkedin.com/in/linustorvalds']
for site in sites:
self.AddUserStory(PathologicalMobileSitesPage(site, self))
|