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 Typical10MobilePage(page_module.Page): | 8 class Typical10MobilePage(page_module.Page): |
9 | 9 |
10 def __init__(self, url, page_set, name=''): | 10 def __init__(self, url, page_set, name=''): |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 'http://www.rg.ru/2014/10/21/cska-site.html', | 46 'http://www.rg.ru/2014/10/21/cska-site.html', |
47 # Why: Popular shopping site | 47 # Why: Popular shopping site |
48 'http://m.ebay.com/itm/351157205404', | 48 'http://m.ebay.com/itm/351157205404', |
49 # Why: Popular viral site, lots of images | 49 # Why: Popular viral site, lots of images |
50 'http://siriuslymeg.tumblr.com/', | 50 'http://siriuslymeg.tumblr.com/', |
51 # Why: Popular Chinese language site. | 51 # Why: Popular Chinese language site. |
52 'http://wapbaike.baidu.com/', | 52 'http://wapbaike.baidu.com/', |
53 ] | 53 ] |
54 | 54 |
55 for url in urls_list: | 55 for url in urls_list: |
56 self.AddPage(Typical10MobilePage(url, self)) | 56 self.AddUserStory(Typical10MobilePage(url, self)) |
OLD | NEW |