Chromium Code Reviews| Index: tools/skp/page_sets/skia_unicodetable_desktop.py |
| diff --git a/tools/skp/page_sets/skia_yahooanswers_desktop.py b/tools/skp/page_sets/skia_unicodetable_desktop.py |
| similarity index 64% |
| rename from tools/skp/page_sets/skia_yahooanswers_desktop.py |
| rename to tools/skp/page_sets/skia_unicodetable_desktop.py |
| index 820ca8afc8d0af368af4ea5875fe8ef6814647fd..27a97c1186753bbf6ce93a4c89e25d39a89eb30d 100644 |
| --- a/tools/skp/page_sets/skia_yahooanswers_desktop.py |
| +++ b/tools/skp/page_sets/skia_unicodetable_desktop.py |
| @@ -1,4 +1,4 @@ |
| -# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# Copyright 2015 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 |
| @@ -16,25 +16,26 @@ class SkiaBuildbotDesktopPage(page_module.Page): |
| page_set=page_set, |
| credentials_path='data/credentials.json') |
| self.user_agent_type = 'desktop' |
| - self.archive_data_file = 'data/skia_yahooanswers_desktop.json' |
| + self.archive_data_file = 'data/skia_unicodetable_desktop.json' |
| def RunNavigateSteps(self, action_runner): |
| action_runner.NavigateToPage(self) |
| - action_runner.Wait(5) |
| + action_runner.ScrollPage(distance=100000) |
| + action_runner.Wait(20) |
| -class SkiaYahooanswersDesktopPageSet(page_set_module.PageSet): |
| +class SkiaUnicodetableDesktopPageSet(page_set_module.PageSet): |
|
borenet
2015/04/03 15:17:36
Out of curiosity, why can't we rename this to Page
rmistry
2015/04/03 15:21:46
Yea I have no idea why I did it this way initially
|
| """ Pages designed to represent the median, not highly optimized web """ |
| def __init__(self): |
| - super(SkiaYahooanswersDesktopPageSet, self).__init__( |
| + super(SkiaUnicodetableDesktopPageSet, self).__init__( |
| user_agent_type='desktop', |
| - archive_data_file='data/skia_yahooanswers_desktop.json') |
| + archive_data_file='data/skia_unicodetable_desktop.json') |
| urls_list = [ |
| - # Why: #1 Alexa reference |
| - 'http://answers.yahoo.com', |
| + # Why: stress tests for fonts (from skia:3574). |
| + 'http://unicode-table.com/en/', |
| ] |
| for url in urls_list: |