Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / tools / perf / page_sets / top_10_mobile.py
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.
4 # pylint: disable=W0401,W0614
5 from telemetry.page.actions.all_page_actions import *
6 from telemetry.page import page as page_module
7 from telemetry.page import page_set as page_set_module
8
9
10 class Top10MobilePage(page_module.Page):
11
12   def __init__(self, url, page_set):
13     super(Top10MobilePage, self).__init__(url=url, page_set=page_set)
14     self.credentials_path = 'data/credentials.json'
15     self.user_agent_type = 'mobile'
16     self.archive_data_file = 'data/top_10_mobile.json'
17
18   def RunSmoothness(self, action_runner):
19     action_runner.RunAction(ScrollAction())
20
21
22 class Top10MobilePageSet(page_set_module.PageSet):
23
24   """ Top 10 mobile sites """
25
26   def __init__(self):
27     super(Top10MobilePageSet, self).__init__(
28       credentials_path='data/credentials.json',
29       user_agent_type='mobile',
30       archive_data_file='data/top_10_mobile.json')
31
32     urls_list = [
33       # Why: #1 (Alexa) most visited page worldwide, picked a reasonable
34       # search term
35       'https://www.google.com/#hl=en&q=science',
36       # Why: #2 (Alexa) most visited page worldwide, picked the most liked
37       # page
38       'https://m.facebook.com/rihanna',
39       # Why: #3 (Alexa) most visited page worldwide, picked a reasonable
40       # search term
41       'http://m.youtube.com/results?q=science',
42       # Why: #4 (Alexa) most visited page worldwide, picked a reasonable search
43       # term
44       'http://search.yahoo.com/search;_ylt=?p=google',
45       # Why: #5 (Alexa) most visited page worldwide, picked a reasonable search
46       # term
47       'http://www.baidu.com/s?word=google',
48       # Why: #6 (Alexa) most visited page worldwide, picked a reasonable page
49       'http://en.m.wikipedia.org/wiki/Science',
50       # Why: #10 (Alexa) most visited page worldwide, picked the most followed
51       # user
52       'https://mobile.twitter.com/justinbieber?skip_interstitial=true',
53       # Why: #11 (Alexa) most visited page worldwide, picked a reasonable
54       # page
55       'http://www.amazon.com/gp/aw/s/?k=nexus',
56       # Why: #13 (Alexa) most visited page worldwide, picked the first real
57       # page
58       'http://m.taobao.com/channel/act/mobile/20131111-women.html',
59       # Why: #18 (Alexa) most visited page worldwide, picked a reasonable
60       # search term
61       'http://yandex.ru/touchsearch?text=science',
62     ]
63
64     for url in urls_list:
65       self.AddPage(Top10MobilePage(url, self))