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

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

Issue 616693002: Kill page.disabled field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 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/key_mobile_sites.py ('k') | tools/perf/page_sets/tough_canvas_cases.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 from telemetry.page import page as page_module 4 from telemetry.page import page as page_module
5 from telemetry.page import page_set as page_set_module 5 from telemetry.page import page_set as page_set_module
6 6
7 7
8 class KeySilkCasesPage(page_module.Page): 8 class KeySilkCasesPage(page_module.Page):
9 9
10 def __init__(self, url, page_set): 10 def __init__(self, url, page_set):
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 self.ScrollKnowledgeCardToTop(action_runner, 'rso') 459 self.ScrollKnowledgeCardToTop(action_runner, 'rso')
460 460
461 461
462 class Page22(KeySilkCasesPage): 462 class Page22(KeySilkCasesPage):
463 463
464 def __init__(self, page_set): 464 def __init__(self, page_set):
465 super(Page22, self).__init__( 465 super(Page22, self).__init__(
466 url='http://plus.google.com/app/basic/stream', 466 url='http://plus.google.com/app/basic/stream',
467 page_set=page_set) 467 page_set=page_set)
468 468
469 self.disabled = 'Times out on Windows; crbug.com/338838'
470 self.credentials = 'google' 469 self.credentials = 'google'
471 470
472 def RunNavigateSteps(self, action_runner): 471 def RunNavigateSteps(self, action_runner):
473 action_runner.NavigateToPage(self) 472 action_runner.NavigateToPage(self)
474 action_runner.WaitForJavaScriptCondition( 473 action_runner.WaitForJavaScriptCondition(
475 'document.getElementsByClassName("fHa").length > 0') 474 'document.getElementsByClassName("fHa").length > 0')
476 action_runner.Wait(2) 475 action_runner.Wait(2)
477 476
478 def RunSmoothness(self, action_runner): 477 def RunSmoothness(self, action_runner):
479 interaction = action_runner.BeginGestureInteraction( 478 interaction = action_runner.BeginGestureInteraction(
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 self.AddPage(Page14(self)) 674 self.AddPage(Page14(self))
676 self.AddPage(Page15(self)) 675 self.AddPage(Page15(self))
677 self.AddPage(Page16(self)) 676 self.AddPage(Page16(self))
678 self.AddPage(Page17(self)) 677 self.AddPage(Page17(self))
679 self.AddPage(Page18(self)) 678 self.AddPage(Page18(self))
680 # crbug.com/404317 679 # crbug.com/404317
681 # self.AddPage(Page19(self)) 680 # self.AddPage(Page19(self))
682 self.AddPage(Page20(self)) 681 self.AddPage(Page20(self))
683 self.AddPage(GwsGoogleExpansion(self)) 682 self.AddPage(GwsGoogleExpansion(self))
684 self.AddPage(GwsBoogieExpansion(self)) 683 self.AddPage(GwsBoogieExpansion(self))
685 self.AddPage(Page22(self)) 684 # Times out on Windows; crbug.com/338838
685 # self.AddPage(Page22(self))
686 self.AddPage(Page23(self)) 686 self.AddPage(Page23(self))
687 self.AddPage(Page24(self)) 687 self.AddPage(Page24(self))
688 self.AddPage(Page25(self)) 688 self.AddPage(Page25(self))
689 self.AddPage(Page26(self)) 689 self.AddPage(Page26(self))
690 self.AddPage(SVGIconRaster(self)) 690 self.AddPage(SVGIconRaster(self))
691 self.AddPage(UpdateHistoryState(self)) 691 self.AddPage(UpdateHistoryState(self))
692 self.AddPage(TextSizeAnimation(self)) 692 self.AddPage(TextSizeAnimation(self))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/key_mobile_sites.py ('k') | tools/perf/page_sets/tough_canvas_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698