Turn on key mobile sites cr page set and delete dashed desktop

#crskps
BUG=skia:3574
BUG=skia:3605

NOTRY=true

Review URL: https://codereview.chromium.org/1040233004
This commit is contained in:
rmistry 2015-03-31 06:22:55 -07:00 committed by Commit bot
parent 009b069f52
commit 5af9a3792f
2 changed files with 1 additions and 44 deletions

View File

@ -1,43 +0,0 @@
# 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 import page as page_module
from telemetry.page import page_set as page_set_module
class SkiaBuildbotDesktopPage(page_module.Page):
def __init__(self, url, page_set):
super(SkiaBuildbotDesktopPage, self).__init__(
url=url,
page_set=page_set,
credentials_path='data/credentials.json')
self.user_agent_type = 'desktop'
self.archive_data_file = 'data/skia_googlespreadsheetdashed_desktop.json'
self.credentials = 'google'
def RunNavigateSteps(self, action_runner):
action_runner.NavigateToPage(self)
action_runner.Wait(15)
class SkiaGooglespreadsheetdashedDesktopPageSet(page_set_module.PageSet):
""" Pages designed to represent the median, not highly optimized web """
def __init__(self):
super(SkiaGooglespreadsheetdashedDesktopPageSet, self).__init__(
user_agent_type='desktop',
archive_data_file='data/skia_googlespreadsheetdashed_desktop.json')
urls_list = [
# Why: from Tom W's list.
('https://docs.google.com/spreadsheet/ccc?key='
'0ApnDjttF0gt9dGpRM0labXFaT3ExSFhWZWstR3dQSWc#gid=0'),
]
for url in urls_list:
self.AddUserStory(SkiaBuildbotDesktopPage(url, self))

View File

@ -120,7 +120,7 @@ CHROMIUM_PAGE_SETS_PATH = os.path.join('tools', 'perf', 'page_sets')
# Dictionary of supported Chromium page sets to their file prefixes.
CHROMIUM_PAGE_SETS_TO_PREFIX = {
# 'key_mobile_sites_smooth.py': 'keymobi',
'key_mobile_sites_smooth.py': 'keymobi',
# TODO(rmistry): Uncomment the below after it is verified that the above
# works.
# 'top_25_smooth.py': 'top25desk',