Home | History | Annotate | Download | only in page_sets
      1 # Copyright 2014 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 # pylint: disable=W0401,W0614
      5 from telemetry.page.actions.all_page_actions import *
      6 from telemetry.page import page as page_module
      7 from telemetry.page import page_set as page_set_module
      8 
      9 
     10 class StartupPagesRecordPage(page_module.Page):
     11 
     12   def __init__(self, url, page_set):
     13     super(StartupPagesRecordPage, self).__init__(url=url, page_set=page_set)
     14     self.archive_data_file = 'data/startup_pages.json'
     15 
     16 
     17 class StartupPagesRecordPageSet(page_set_module.PageSet):
     18 
     19   """ Pages to record data for testing starting Chrome with a URL.
     20       We can't use startup_pages.json with record_wpr, since record_wpr
     21       requires a default navigate step, which we don't want for startup
     22       testing; but we do want to record the pages it uses. Also, record_wpr
     23       fails on about:blank, which we want to include in startup testing.
     24   """
     25 
     26   def __init__(self):
     27     super(StartupPagesRecordPageSet, self).__init__(
     28         archive_data_file='data/startup_pages.json')
     29 
     30     urls_list = [
     31         # Why: typical page
     32         'http://bbc.co.uk',
     33         # Why: Horribly complex page - stress test!
     34         'http://kapook.com',
     35     ]
     36 
     37     for url in urls_list:
     38       self.AddPage(StartupPagesRecordPage(url, self))
     39