| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 from telemetry.page import page as page_module |
| 5 from telemetry import story |
| 6 |
| 7 |
| 8 class IdleAfterLoadingStories(story.StorySet): |
| 9 """Historically, Chrome has high CPU usage on these sites after the page has |
| 10 loaded. These user stories let Chrome idle on the page.""" |
| 11 |
| 12 def __init__(self): |
| 13 super(IdleAfterLoadingStories, self).__init__( |
| 14 archive_data_file='data/idle_after_loading_stories.json', |
| 15 cloud_storage_bucket=story.PARTNER_BUCKET) |
| 16 |
| 17 # Chrome has high idle CPU usage on this site, even after its quiesced. |
| 18 # https://crbug.com/638365. |
| 19 self.AddStory(page_module.Page( |
| 20 'http://www.labradortraininghq.com/labrador-training/how-to-crate-train' |
| 21 '-a-puppy/#How_Long_DoesIt_Take_To_Crate_Train_A_Puppy', page_set=self)) |
| OLD | NEW |