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
3 # found in the LICENSE file.
5 from telemetry
.page
import page
as page_module
6 from telemetry
import story
9 class Top20Page(page_module
.Page
):
11 def __init__(self
, url
, page_set
, name
=''):
12 super(Top20Page
, self
).__init
__(url
=url
, page_set
=page_set
, name
=name
)
13 self
.archive_data_file
= '../data/chrome_proxy_top_20.json'
15 class Top20StorySet(story
.StorySet
):
17 """ Pages hand-picked for Chrome Proxy tests. """
20 super(Top20StorySet
, self
).__init
__(
21 archive_data_file
='../data/chrome_proxy_top_20.json')
23 # Why: top google property; a google tab is often open
24 self
.AddStory(Top20Page('https://www.google.com/#hl=en&q=barack+obama',
27 # Why: #3 (Alexa global)
28 self
.AddStory(Top20Page('http://www.youtube.com', self
))
30 # Why: #18 (Alexa global), Picked an interesting post
31 self
.AddStory(Top20Page(
32 # pylint: disable=C0301
33 'http://en.blog.wordpress.com/2012/09/04/freshly-pressed-editors-picks-for-august-2012/',
36 # Why: top social,Public profile
37 self
.AddStory(Top20Page('http://www.facebook.com/barackobama', self
,
40 # Why: #12 (Alexa global),Public profile
41 self
.AddStory(Top20Page('http://www.linkedin.com/in/linustorvalds',
44 # Why: #6 (Alexa) most visited worldwide,Picked an interesting page
45 self
.AddStory(Top20Page('http://en.wikipedia.org/wiki/Wikipedia', self
,
48 # Why: #8 (Alexa global),Picked an interesting page
49 self
.AddStory(Top20Page('https://twitter.com/katyperry', self
,
52 # Why: #37 (Alexa global)
53 self
.AddStory(Top20Page('http://pinterest.com', self
, 'Pinterest'))
56 self
.AddStory(Top20Page('http://espn.go.com', self
, 'ESPN'))
58 # Why: #1 news worldwide (Alexa global)
59 self
.AddStory(Top20Page('http://news.yahoo.com', self
))
61 # Why: #2 news worldwide
62 self
.AddStory(Top20Page('http://www.cnn.com', self
))
64 # Why: #7 (Alexa news); #27 total time spent,Picked interesting page
65 self
.AddStory(Top20Page(
66 'http://www.weather.com/weather/right-now/Mountain+View+CA+94043',
69 # Why: #1 world commerce website by visits; #3 commerce in the US by time
71 self
.AddStory(Top20Page('http://www.amazon.com', self
))
73 # Why: #1 commerce website by time spent by users in US
74 self
.AddStory(Top20Page('http://www.ebay.com', self
))
76 # Why: #1 games according to Alexa (with actual games in it)
77 self
.AddStory(Top20Page('http://games.yahoo.com', self
))
79 # Why: #1 Alexa recreation
80 self
.AddStory(Top20Page('http://booking.com', self
))
82 # Why: #1 Alexa reference
83 self
.AddStory(Top20Page('http://answers.yahoo.com', self
))
85 # Why: #1 Alexa sports
86 self
.AddStory(Top20Page('http://sports.yahoo.com/', self
))
89 self
.AddStory(Top20Page('http://techcrunch.com', self
))
91 self
.AddStory(Top20Page('http://www.nytimes.com', self
))