blob: 5bf64cdb95fca730193d3e6b08e08daf652707e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from telemetry.page import page as page_module
from telemetry.page import page_set as page_set_module
from page_sets import webgl_supported_shared_state
class MapsPage(page_module.Page):
def __init__(self, page_set):
super(MapsPage, self).__init__(
url='http://localhost:10020/tracker.html',
page_set=page_set,
name='Maps.maps_002',
shared_page_state_class=(
webgl_supported_shared_state.WebGLSupportedSharedState))
self.archive_data_file = 'data/maps.json'
def RunNavigateSteps(self, action_runner):
super(MapsPage, self).RunNavigateSteps(action_runner)
action_runner.Wait(3)
def RunPageInteractions(self, action_runner):
with action_runner.CreateInteraction('MapAnimation'):
action_runner.WaitForJavaScriptCondition('window.testDone', 120)
class MapsPageSet(page_set_module.PageSet):
""" Google Maps examples """
def __init__(self):
super(MapsPageSet, self).__init__(
archive_data_file='data/maps.json',
bucket=page_set_module.PUBLIC_BUCKET)
self.AddUserStory(MapsPage(self))
|