| 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 from telemetry.page import page as page_module | 4 from telemetry.page import page as page_module |
| 5 from telemetry.page import page_set as page_set_module | 5 from telemetry.page import page_set as page_set_module |
| 6 | 6 |
| 7 | 7 |
| 8 class Top10MobilePage(page_module.Page): | 8 class Top10MobilePage(page_module.Page): |
| 9 | 9 |
| 10 def __init__(self, url, page_set, run_no_page_interactions): | 10 def __init__(self, url, page_set, run_no_page_interactions): |
| 11 super(Top10MobilePage, self).__init__( | 11 super(Top10MobilePage, self).__init__( |
| 12 url=url, page_set=page_set, credentials_path = 'data/credentials.json') | 12 url=url, page_set=page_set, credentials_path = 'data/credentials.json') |
| 13 self.user_agent_type = 'mobile' | 13 self.user_agent_type = 'mobile' |
| 14 self.archive_data_file = 'data/top_10_mobile.json' | 14 self.archive_data_file = 'data/top_10_mobile.json' |
| 15 self._run_no_page_interactions = run_no_page_interactions | 15 self._run_no_page_interactions = run_no_page_interactions |
| 16 | 16 |
| 17 def RunPageInteractions(self, action_runner): | 17 def RunPageInteractions(self, action_runner): |
| 18 if self._run_no_page_interactions: | 18 if self._run_no_page_interactions: |
| 19 return | 19 return |
| 20 interaction = action_runner.BeginGestureInteraction( | 20 interaction = action_runner.BeginGestureInteraction( |
| 21 'ScrollAction', is_smooth=True) | 21 'ScrollAction') |
| 22 action_runner.ScrollPage() | 22 action_runner.ScrollPage() |
| 23 interaction.End() | 23 interaction.End() |
| 24 | 24 |
| 25 | 25 |
| 26 class Top10MobilePageSet(page_set_module.PageSet): | 26 class Top10MobilePageSet(page_set_module.PageSet): |
| 27 | 27 |
| 28 """ Top 10 mobile sites """ | 28 """ Top 10 mobile sites """ |
| 29 | 29 |
| 30 def __init__(self, run_no_page_interactions=False): | 30 def __init__(self, run_no_page_interactions=False): |
| 31 super(Top10MobilePageSet, self).__init__( | 31 super(Top10MobilePageSet, self).__init__( |
| (...skipping 28 matching lines...) Expand all Loading... |
| 60 # Why: #13 (Alexa) most visited page worldwide, picked the first real | 60 # Why: #13 (Alexa) most visited page worldwide, picked the first real |
| 61 # page | 61 # page |
| 62 'http://m.taobao.com/channel/act/mobile/20131111-women.html', | 62 'http://m.taobao.com/channel/act/mobile/20131111-women.html', |
| 63 # Why: #18 (Alexa) most visited page worldwide, picked a reasonable | 63 # Why: #18 (Alexa) most visited page worldwide, picked a reasonable |
| 64 # search term | 64 # search term |
| 65 'http://yandex.ru/touchsearch?text=science', | 65 'http://yandex.ru/touchsearch?text=science', |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 for url in urls_list: | 68 for url in urls_list: |
| 69 self.AddUserStory(Top10MobilePage(url, self, run_no_page_interactions)) | 69 self.AddUserStory(Top10MobilePage(url, self, run_no_page_interactions)) |
| OLD | NEW |