Ejemplo n.º 1
0
 def CreateStorySet(self, options):
     return page_sets.SystemHealthStorySet(platform=self.PLATFORM)
Ejemplo n.º 2
0
 def CreateStorySet(self, options):
     return page_sets.SystemHealthStorySet(platform='mobile', case='blank')
Ejemplo n.º 3
0
 def CreateStorySet(self, options):
     return page_sets.SystemHealthStorySet(platform=self.PLATFORM,
                                           take_memory_measurement=True)
Ejemplo n.º 4
0
 def CreateStorySet(self, options):
     return page_sets.SystemHealthStorySet(platform='mobile',
                                           tag=story_tags.INFINITE_SCROLL)
Ejemplo n.º 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