Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Unified Diff: tools/skp/page_sets/skia_unicodetable_desktop.py

Issue 1053253003: Delete no longer needed pagesets, add new pagesets and make names more readable (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Fix copyright year Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/skp/page_sets/skia_ukwsj_nexus10.py ('k') | tools/skp/page_sets/skia_weather_desktop.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « tools/skp/page_sets/skia_ukwsj_nexus10.py ('k') | tools/skp/page_sets/skia_weather_desktop.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698