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

Side by Side Diff: tools/perf/page_sets/mse_cases.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
« no previous file with comments | « tools/perf/page_sets/maps.py ('k') | tools/perf/page_sets/plus_alt_posts_photos.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 MseCasesPage(page_module.Page): 10 class MseCasesPage(page_module.Page):
11 11
12 def __init__(self, url, page_set): 12 def __init__(self, url, page_set):
13 super(MseCasesPage, self).__init__(url=url, page_set=page_set) 13 super(MseCasesPage, self).__init__(url=url, page_set=page_set)
14 14
15 def RunNavigateSteps(self, action_runner): 15 def RunNavigateSteps(self, action_runner):
16 action_runner.RunAction(NavigateAction()) 16 action_runner.NavigateToPage(self)
17 action_runner.RunAction(WaitAction( 17 action_runner.RunAction(WaitAction(
18 { 18 {
19 'javascript': 'window.__testDone == true' 19 'javascript': 'window.__testDone == true'
20 })) 20 }))
21 21
22 22
23 class MseCasesPageSet(page_set_module.PageSet): 23 class MseCasesPageSet(page_set_module.PageSet):
24 24
25 """ Media source extensions perf benchmark """ 25 """ Media source extensions perf benchmark """
26 26
(...skipping 16 matching lines...) Expand all
43 'file://mse_cases/startup_test.html?testType=A', 43 'file://mse_cases/startup_test.html?testType=A',
44 'file://mse_cases/startup_test.html?testType=A&useAppendStream=true', 44 'file://mse_cases/startup_test.html?testType=A&useAppendStream=true',
45 # pylint: disable=C0301 45 # pylint: disable=C0301
46 'file://mse_cases/startup_test.html?testType=A&doNotWaitForBodyOnLoad=true ', 46 'file://mse_cases/startup_test.html?testType=A&doNotWaitForBodyOnLoad=true ',
47 # pylint: disable=C0301 47 # pylint: disable=C0301
48 'file://mse_cases/startup_test.html?testType=A&useAppendStream=true&doNotW aitForBodyOnLoad=true', 48 'file://mse_cases/startup_test.html?testType=A&useAppendStream=true&doNotW aitForBodyOnLoad=true',
49 ] 49 ]
50 50
51 for url in urls_list: 51 for url in urls_list:
52 self.AddPage(MseCasesPage(url, self)) 52 self.AddPage(MseCasesPage(url, self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/maps.py ('k') | tools/perf/page_sets/plus_alt_posts_photos.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698