Example #1
0
 def CreateStorySet(self, options):
     return page_sets.SystemHealthStorySet(platform=self.PLATFORM)
Example #2
0
 def CreateStorySet(self, options):
     return page_sets.SystemHealthStorySet(platform='mobile', case='blank')
Example #3
0
 def CreateStorySet(self, options):
     return page_sets.SystemHealthStorySet(platform=self.PLATFORM,
                                           take_memory_measurement=True)
Example #4
0
 def CreateStorySet(self, options):
     return page_sets.SystemHealthStorySet(platform='mobile',
                                           tag=story_tags.INFINITE_SCROLL)
Example #5
0
 def CreateStorySet(self, options):
     return page_sets.SystemHealthStorySet(platform='desktop', case='load')
def IterAllSystemHealthStories():
  for s in page_sets.SystemHealthStorySet(platform='desktop'):
    yield s
  for s in page_sets.SystemHealthStorySet(platform='mobile'):
    if len(s.SUPPORTED_PLATFORMS) < 2:
      yield s