| OLD | NEW |
| 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 | 9 |
| 10 class Top10MobilePage(page_module.Page): | 10 class Top10MobilePage(page_module.Page): |
| 11 | 11 |
| 12 def __init__(self, url, page_set): | 12 def __init__(self, url, page_set): |
| 13 super(Top10MobilePage, self).__init__(url=url, page_set=page_set) | 13 super(Top10MobilePage, self).__init__(url=url, page_set=page_set) |
| 14 self.credentials_path = 'data/credentials.json' | 14 self.credentials_path = 'data/credentials.json' |
| 15 self.user_agent_type = 'mobile' | 15 self.user_agent_type = 'mobile' |
| 16 self.archive_data_file = 'data/top_10_mobile.json' | 16 self.archive_data_file = 'data/top_10_mobile.json' |
| 17 | 17 |
| 18 def RunSmoothness(self, action_runner): | 18 def RunSmoothness(self, action_runner): |
| 19 action_runner.RunAction(ScrollAction()) | 19 action_runner.RunAction(ScrollAction()) |
| 20 | 20 |
| 21 | 21 |
| 22 class Top10MobilePageSet(page_set_module.PageSet): | 22 class Top10MobilePageSet(page_set_module.PageSet): |
| 23 | 23 |
| 24 """ Top 10 mobile sites """ | 24 """ Top 10 mobile sites """ |
| 25 | 25 |
| 26 def __init__(self): | 26 def __init__(self): |
| 27 super(Top10MobilePageSet, self).__init__( | 27 super(Top10MobilePageSet, self).__init__( |
| 28 credentials_path='data/credentials.json', | 28 credentials_path='data/credentials.json', |
| 29 user_agent_type='mobile', | 29 user_agent_type='mobile', |
| 30 archive_data_file='data/top_10_mobile.json') | 30 archive_data_file='data/top_10_mobile.json', |
| 31 bucket=page_set_module.PARTNER_BUCKET) |
| 31 | 32 |
| 32 urls_list = [ | 33 urls_list = [ |
| 33 # Why: #1 (Alexa) most visited page worldwide, picked a reasonable | 34 # Why: #1 (Alexa) most visited page worldwide, picked a reasonable |
| 34 # search term | 35 # search term |
| 35 'https://www.google.com/#hl=en&q=science', | 36 'https://www.google.com/#hl=en&q=science', |
| 36 # Why: #2 (Alexa) most visited page worldwide, picked the most liked | 37 # Why: #2 (Alexa) most visited page worldwide, picked the most liked |
| 37 # page | 38 # page |
| 38 'https://m.facebook.com/rihanna', | 39 'https://m.facebook.com/rihanna', |
| 39 # Why: #3 (Alexa) most visited page worldwide, picked a reasonable | 40 # Why: #3 (Alexa) most visited page worldwide, picked a reasonable |
| 40 # search term | 41 # search term |
| (...skipping 15 matching lines...) Expand all Loading... |
| 56 # Why: #13 (Alexa) most visited page worldwide, picked the first real | 57 # Why: #13 (Alexa) most visited page worldwide, picked the first real |
| 57 # page | 58 # page |
| 58 'http://m.taobao.com/channel/act/mobile/20131111-women.html', | 59 'http://m.taobao.com/channel/act/mobile/20131111-women.html', |
| 59 # Why: #18 (Alexa) most visited page worldwide, picked a reasonable | 60 # Why: #18 (Alexa) most visited page worldwide, picked a reasonable |
| 60 # search term | 61 # search term |
| 61 'http://yandex.ru/touchsearch?text=science', | 62 'http://yandex.ru/touchsearch?text=science', |
| 62 ] | 63 ] |
| 63 | 64 |
| 64 for url in urls_list: | 65 for url in urls_list: |
| 65 self.AddPage(Top10MobilePage(url, self)) | 66 self.AddPage(Top10MobilePage(url, self)) |
| OLD | NEW |