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