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

Side by Side Diff: tools/perf/page_sets/chrome_proxy/smoke.py

Issue 277143003: Add NavigateToPage API for action_runner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 7 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 # pylint: disable=W0401,W0614 4 # pylint: disable=W0401,W0614
5 from telemetry.page.actions.all_page_actions import * 5 from telemetry.page.actions.all_page_actions import *
6 from telemetry.page import page as page_module 6 from telemetry.page import page as page_module
7 from telemetry.page import page_set as page_set_module 7 from telemetry.page import page_set as page_set_module
8 8
9 9
10 class SmokePage(page_module.Page): 10 class SmokePage(page_module.Page):
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 response will be received. 87 response will be received.
88 """ 88 """
89 89
90 def __init__(self, page_set): 90 def __init__(self, page_set):
91 super(Page6, self).__init__( 91 super(Page6, self).__init__(
92 url='http://www.ianfette.org/', 92 url='http://www.ianfette.org/',
93 page_set=page_set, 93 page_set=page_set,
94 name='safebrowsing') 94 name='safebrowsing')
95 95
96 def RunNavigateSteps(self, action_runner): 96 def RunNavigateSteps(self, action_runner):
97 action_runner.RunAction(NavigateAction({'timeout_seconds': 5})) 97 action_runner.NavigateToPage(self, timeout_seconds=5)
98 98
99 99
100 class SmokePageSet(page_set_module.PageSet): 100 class SmokePageSet(page_set_module.PageSet):
101 101
102 """ Chrome proxy test sites """ 102 """ Chrome proxy test sites """
103 103
104 def __init__(self): 104 def __init__(self):
105 super(SmokePageSet, self).__init__( 105 super(SmokePageSet, self).__init__(
106 archive_data_file='../data/chrome_proxy_smoke.json') 106 archive_data_file='../data/chrome_proxy_smoke.json')
107 107
108 self.AddPage(Page1(self)) 108 self.AddPage(Page1(self))
109 self.AddPage(Page2(self)) 109 self.AddPage(Page2(self))
110 self.AddPage(Page3(self)) 110 self.AddPage(Page3(self))
111 self.AddPage(Page4(self)) 111 self.AddPage(Page4(self))
112 self.AddPage(Page5(self)) 112 self.AddPage(Page5(self))
113 self.AddPage(Page6(self)) 113 self.AddPage(Page6(self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/chrome_proxy/safebrowsing.py ('k') | tools/perf/page_sets/gmail_alt_threadlist_conversation.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698