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 shared_page_state
6 from telemetry
import story
9 class IntlEsFrPtBrPage(page_module
.Page
):
11 def __init__(self
, url
, page_set
):
12 super(IntlEsFrPtBrPage
, self
).__init
__(
13 url
=url
, page_set
=page_set
,
14 shared_page_state_class
=shared_page_state
.SharedDesktopPageState
)
15 self
.archive_data_file
= 'data/intl_es_fr_pt-BR.json'
18 class IntlEsFrPtBrPageSet(story
.StorySet
):
21 Popular pages in Romance languages Spanish, French and Brazilian Portuguese.
25 super(IntlEsFrPtBrPageSet
, self
).__init
__(
26 archive_data_file
='data/intl_es_fr_pt-BR.json',
27 cloud_storage_bucket
=story
.PARTNER_BUCKET
)
32 # pylint: disable=C0301
33 'http://www.ebay.es/sch/i.html?_sacat=382&_trkparms=clkid%3D6548971389060485883&_qi=RTM1381637',
34 'http://www.eltiempo.es/talavera-de-la-reina.html',
35 'http://www.free.fr/adsl/index.html',
36 'http://www.voila.fr/',
37 'http://www.leboncoin.fr/annonces/offres/limousin/',
38 'http://www.orange.fr/',
39 # Why: #5 site in Brazil
40 'http://www.uol.com.br/',
41 # Why: #10 site in Brazil
42 # pylint: disable=C0301
43 'http://produto.mercadolivre.com.br/MLB-468424957-pelicula-protetora-smartphone-h5500-e-h5300-43-frete-free-_JM'
47 self
.AddStory(IntlEsFrPtBrPage(url
, self
))