diff options
author | rmistry <rmistry@google.com> | 2015-01-13 11:52:28 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-13 11:52:28 -0800 |
commit | bb928a0c0a4ddc11b05771e9eaa33f1058cc022a (patch) | |
tree | ebe8438970c9c088e1cce988e785f7644e59a248 /tools/skp/page_sets | |
parent | 5d17286b3596c369132f10422a35a2cfca5c009a (diff) |
Add pageset for ugamsolutions.com
BUG=skia:3306
NOTRY=true
Review URL: https://codereview.chromium.org/851743004
Diffstat (limited to 'tools/skp/page_sets')
-rw-r--r-- | tools/skp/page_sets/skia_ugamsolutions_desktop.py | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tools/skp/page_sets/skia_ugamsolutions_desktop.py b/tools/skp/page_sets/skia_ugamsolutions_desktop.py new file mode 100644 index 0000000000..b7855fe373 --- /dev/null +++ b/tools/skp/page_sets/skia_ugamsolutions_desktop.py @@ -0,0 +1,41 @@ +# 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_ugamsolutions_desktop.json' + + def RunNavigateSteps(self, action_runner): + action_runner.NavigateToPage(self) + action_runner.Wait(15) + + +class SkiaUgamsolutionsDesktopPageSet(page_set_module.PageSet): + + """ Pages designed to represent the median, not highly optimized web """ + + def __init__(self): + super(SkiaUgamsolutionsDesktopPageSet, self).__init__( + user_agent_type='desktop', + archive_data_file='data/skia_ugamsolutions_desktop.json') + + urls_list = [ + # Why: for crbug.com/447291 + 'http://www.ugamsolutions.com', + ] + + for url in urls_list: + self.AddUserStory(SkiaBuildbotDesktopPage(url, self)) |