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