Add scrolling to go to the more interesting parts of desk_intelwiki.skp

Bug: skia:11804
Change-Id: I96ce34311b5e5420ee343a0dbc68ef20f399be4f
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/390336
Commit-Queue: Ravi Mistry <rmistry@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
This commit is contained in:
Ravi Mistry 2021-03-30 09:07:34 -04:00
parent ca65f8f9f6
commit 430fd53936

View File

@ -21,7 +21,11 @@ class SkiaBuildbotDesktopPage(page_module.Page):
def RunNavigateSteps(self, action_runner):
action_runner.Navigate(self.url)
action_runner.Wait(120)
action_runner.Wait(20)
def RunPageInteractions(self, action_runner):
with action_runner.CreateGestureInteraction('ScrollAction'):
action_runner.ScrollPage()
class SkiaIntelwikiDesktopPageSet(story.StorySet):