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 from telemetry
.page
import page
as page_module
5 from telemetry
.page
import page_set
as page_set_module
8 class IntlHiRuPage(page_module
.Page
):
10 def __init__(self
, url
, page_set
):
11 super(IntlHiRuPage
, self
).__init
__(url
=url
, page_set
=page_set
)
12 self
.user_agent_type
= 'desktop'
13 self
.archive_data_file
= 'data/intl_hi_ru.json'
16 class IntlHiRuPageSet(page_set_module
.PageSet
):
18 """ Popular pages in Hindi and Russian. """
21 super(IntlHiRuPageSet
, self
).__init
__(
22 user_agent_type
='desktop',
23 archive_data_file
='data/intl_hi_ru.json',
24 bucket
=page_set_module
.PARTNER_BUCKET
)
27 # Why: #12 site in Russia
28 'http://www.rambler.ru/',
30 # pylint: disable=C0301
31 'http://yandex.ru/yandsearch?lr=102567&text=%D0%9F%D0%BE%D0%B3%D0%BE%D0%B4%D0%B0',
32 'http://photofile.ru/',
33 'http://ru.wikipedia.org/',
34 'http://narod.yandex.ru/',
36 'http://rutracker.org/forum/index.php',
37 'http://hindi.webdunia.com/',
38 # Why: #49 site in India
39 'http://hindi.oneindia.in/',
40 # Why: #9 site in India
41 'http://www.indiatimes.com/',
42 # Why: #2 site in India
43 'http://news.google.co.in/nwshp?tab=in&hl=hi'
47 self
.AddUserStory(IntlHiRuPage(url
, self
))