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

Side by Side Diff: tools/perf/page_sets/mse_cases.py

Issue 321563003: Add Wait* API to ActionRunner to wrap over WaitAction. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing to head. Created 6 years, 6 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/mobile_memory.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.NavigateToPage(self) 16 action_runner.NavigateToPage(self)
17 action_runner.RunAction(WaitAction( 17 action_runner.WaitForJavaScriptCondition('window.__testDone == true')
18 {
19 'javascript': 'window.__testDone == true'
20 }))
21 18
22 19
23 class MseCasesPageSet(page_set_module.PageSet): 20 class MseCasesPageSet(page_set_module.PageSet):
24 21
25 """ Media source extensions perf benchmark """ 22 """ Media source extensions perf benchmark """
26 23
27 def __init__(self): 24 def __init__(self):
28 super(MseCasesPageSet, self).__init__() 25 super(MseCasesPageSet, self).__init__()
29 26
30 urls_list = [ 27 urls_list = [
(...skipping 12 matching lines...) Expand all
43 'file://mse_cases/startup_test.html?testType=A', 40 'file://mse_cases/startup_test.html?testType=A',
44 'file://mse_cases/startup_test.html?testType=A&useAppendStream=true', 41 'file://mse_cases/startup_test.html?testType=A&useAppendStream=true',
45 # pylint: disable=C0301 42 # pylint: disable=C0301
46 'file://mse_cases/startup_test.html?testType=A&doNotWaitForBodyOnLoad=true ', 43 'file://mse_cases/startup_test.html?testType=A&doNotWaitForBodyOnLoad=true ',
47 # pylint: disable=C0301 44 # pylint: disable=C0301
48 'file://mse_cases/startup_test.html?testType=A&useAppendStream=true&doNotW aitForBodyOnLoad=true', 45 'file://mse_cases/startup_test.html?testType=A&useAppendStream=true&doNotW aitForBodyOnLoad=true',
49 ] 46 ]
50 47
51 for url in urls_list: 48 for url in urls_list:
52 self.AddPage(MseCasesPage(url, self)) 49 self.AddPage(MseCasesPage(url, self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/mobile_memory.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