blob: 7fbd0a0077e538f02c88058c90c717c2ddef05fc [file] [log] [blame]
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# pylint: disable=W0401,W0614
from telemetry.page.actions.all_page_actions import *
from telemetry.page import page as page_module
from telemetry.page import page_set as page_set_module
class IntlArFaHePage(page_module.Page):
def __init__(self, url, page_set):
super(IntlArFaHePage, self).__init__(url=url, page_set=page_set)
self.user_agent_type = 'desktop'
self.archive_data_file = 'data/intl_ar_fa_he.json'
def RunSmoothness(self, action_runner):
action_runner.RunAction(ScrollAction())
class IntlArFaHePageSet(page_set_module.PageSet):
""" Popular pages in right-to-left languages Arabic, Farsi and Hebrew. """
def __init__(self):
super(IntlArFaHePageSet, self).__init__(
user_agent_type='desktop',
archive_data_file='data/intl_ar_fa_he.json',
bucket=page_set_module.PARTNER_BUCKET)
urls_list = [
'http://msn.co.il/',
'http://ynet.co.il/',
'http://www.islamweb.net/',
'http://farsnews.com/',
'http://www.masrawy.com/',
'http://www.startimes.com/f.aspx',
'http://www.aljayyash.net/',
'http://www.google.com.sa/'
]
for url in urls_list:
self.AddPage(IntlArFaHePage(url, self))