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 Typical25Page(page_module.Page): | 8 class Typical25Page(page_module.Page): |
9 | 9 |
10 def __init__(self, url, page_set): | 10 def __init__(self, url, page_set, run_no_page_interactions): |
11 super(Typical25Page, self).__init__(url=url, page_set=page_set) | 11 super(Typical25Page, self).__init__(url=url, page_set=page_set) |
12 self.user_agent_type = 'desktop' | 12 self.user_agent_type = 'desktop' |
13 self.archive_data_file = 'data/typical_25.json' | 13 self.archive_data_file = 'data/typical_25.json' |
| 14 self._run_no_page_interactions = run_no_page_interactions |
14 | 15 |
15 def RunPageInteractions(self, action_runner): | 16 def RunPageInteractions(self, action_runner): |
| 17 if self._run_no_page_interactions: |
| 18 return |
16 interaction = action_runner.BeginGestureInteraction( | 19 interaction = action_runner.BeginGestureInteraction( |
17 'ScrollAction', is_smooth=True) | 20 'ScrollAction', is_smooth=True) |
18 action_runner.ScrollPage() | 21 action_runner.ScrollPage() |
19 interaction.End() | 22 interaction.End() |
20 | 23 |
21 | 24 |
22 class Typical25PageSet(page_set_module.PageSet): | 25 class Typical25PageSet(page_set_module.PageSet): |
23 | 26 |
24 """ Pages designed to represent the median, not highly optimized web """ | 27 """ Pages designed to represent the median, not highly optimized web """ |
25 | 28 |
26 def __init__(self): | 29 def __init__(self, make_pages_with_no_interactions=False): |
27 super(Typical25PageSet, self).__init__( | 30 super(Typical25PageSet, self).__init__( |
28 user_agent_type='desktop', | 31 user_agent_type='desktop', |
29 archive_data_file='data/typical_25.json', | 32 archive_data_file='data/typical_25.json', |
30 bucket=page_set_module.PARTNER_BUCKET) | 33 bucket=page_set_module.PARTNER_BUCKET) |
31 | 34 |
32 urls_list = [ | 35 urls_list = [ |
33 # Why: Alexa games #48 | 36 # Why: Alexa games #48 |
34 'http://www.nick.com/games', | 37 'http://www.nick.com/games', |
35 # Why: Alexa sports #45 | 38 # Why: Alexa sports #45 |
36 'http://www.rei.com/', | 39 'http://www.rei.com/', |
(...skipping 27 matching lines...) Expand all Loading... |
64 '1837448?brand=none&tm_link=tm_homeA_rc_name2'), | 67 '1837448?brand=none&tm_link=tm_homeA_rc_name2'), |
65 # pylint: disable=C0301 | 68 # pylint: disable=C0301 |
66 'http://www.theverge.com/2013/3/5/4061684/inside-ted-the-smartest-bubble-i
n-the-world', | 69 'http://www.theverge.com/2013/3/5/4061684/inside-ted-the-smartest-bubble-i
n-the-world', |
67 'http://www.airbnb.com/', | 70 'http://www.airbnb.com/', |
68 'http://www.ign.com/', | 71 'http://www.ign.com/', |
69 # Why: Alexa health #25 | 72 # Why: Alexa health #25 |
70 'http://www.fda.gov', | 73 'http://www.fda.gov', |
71 ] | 74 ] |
72 | 75 |
73 for url in urls_list: | 76 for url in urls_list: |
74 self.AddUserStory(Typical25Page(url, self)) | 77 self.AddUserStory( |
| 78 Typical25Page(url, self, make_pages_with_no_interactions)) |
OLD | NEW |