Chromium Code Reviews| 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 self.AddStory(page_module.Page( | |
| 17 'http://www.labradortraininghq.com/labrador-training/how-to-crate-train' | |
|
nednguyen
2016/08/27 00:10:38
nits: can you add comment or bug link about why th
erikchen
2016/08/27 00:20:21
Done.
| |
| 18 '-a-puppy/#How_Long_DoesIt_Take_To_Crate_Train_A_Puppy', page_set=self)) | |
| OLD | NEW |