0a8b259a72
* skia_nytimes_mobile looks the same as skia_nytimes_desktop so deleting it. * Was unsuccessful in making skia_sfgate_desktop work so deleting it. * Increasing wait time in capitalvolkswagen seems to help SKP be more complete. * Increasing wait time in booking does not seem to inc # of images but increasing it anyway. NoTry: true Bug: skia:8653 Change-Id: I9c05ffa679652a4b3962967f8376df525e7649fb Reviewed-on: https://skia-review.googlesource.com/c/skia/+/203821 Reviewed-by: Robert Phillips <robertphillips@google.com> Commit-Queue: Ravi Mistry <rmistry@google.com>
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
# Copyright 2019 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 import story
|
|
from telemetry.page import page as page_module
|
|
from telemetry.page import shared_page_state
|
|
|
|
|
|
class SkiaMobilePage(page_module.Page):
|
|
|
|
def __init__(self, url, page_set):
|
|
super(SkiaMobilePage, self).__init__(
|
|
url=url,
|
|
name=url,
|
|
page_set=page_set,
|
|
shared_page_state_class=shared_page_state.SharedMobilePageState)
|
|
self.archive_data_file = 'data/skia_capitalvolkswagen_mobile.json'
|
|
|
|
def RunNavigateSteps(self, action_runner):
|
|
action_runner.Navigate(self.url)
|
|
action_runner.Wait(30)
|
|
|
|
|
|
class SkiaCapitalvolkswagenMobilePageSet(story.StorySet):
|
|
""" Pages designed to represent the median, not highly optimized web """
|
|
|
|
def __init__(self):
|
|
super(SkiaCapitalvolkswagenMobilePageSet, self).__init__(
|
|
archive_data_file='data/skia_capitalvolkswagen_mobile.json')
|
|
|
|
urls_list = [
|
|
# go/skia-skps-3-2019
|
|
('https://www.capitolvolkswagen.com/new-vehicles/'),
|
|
]
|
|
|
|
for url in urls_list:
|
|
self.AddStory(SkiaMobilePage(url, self))
|