HomeSort by relevance Sort by last modified time
    Searched refs:page_action (Results 1 - 23 of 23) sorted by null

  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
page_action_unittest.py 5 """Tests for page_action."""
7 from telemetry.internal.actions import page_action
32 page_action.EvaluateCallbackWithElement(
37 page_action.EvaluateCallbackWithElement(
42 page_action.EvaluateCallbackWithElement(
47 page_action.EvaluateCallbackWithElement(
57 page_action.EvaluateCallbackWithElement(
64 page_action.EvaluateCallbackWithElement(
70 page_action.EvaluateCallbackWithElement(
72 self.assertRaises(page_action.PageActionFailed, Evaluate1
    [all...]
swipe.py 7 from telemetry.internal.actions import page_action
10 class SwipeAction(page_action.PageAction):
14 synthetic_gesture_source=page_action.GESTURE_SOURCE_DEFAULT):
17 raise page_action.PageActionNotSupported(
38 raise page_action.PageActionNotSupported(
43 raise page_action.PageActionNotSupported(
46 if not page_action.IsGestureSourceTypeSupported(tab, 'touch'):
47 raise page_action.PageActionNotSupported(
78 page_action.EvaluateCallbackWithElement(
javascript_click.py 5 from telemetry.internal.actions import page_action
8 class ClickElementAction(page_action.PageAction):
23 page_action.EvaluateCallbackWithElement(
drag.py 5 """A Telemetry page_action that performs the "drag" action on pages.
23 from telemetry.internal.actions import page_action
26 class DragAction(page_action.PageAction):
32 synthetic_gesture_source=page_action.GESTURE_SOURCE_DEFAULT):
54 raise page_action.PageActionNotSupported(
59 if not page_action.IsGestureSourceTypeSupported(tab, 'touch'):
60 raise page_action.PageActionNotSupported(
65 raise page_action.PageActionNotSupported(
80 if (page_action.IsGestureSourceTypeSupported(tab, 'mouse') and
104 page_action.EvaluateCallbackWithElement
    [all...]
scroll.py 6 from telemetry.internal.actions import page_action
9 class ScrollAction(page_action.PageAction):
16 synthetic_gesture_source=page_action.GESTURE_SOURCE_DEFAULT):
21 raise page_action.PageActionNotSupported(
58 raise page_action.PageActionNotSupported(
63 if not page_action.IsGestureSourceTypeSupported(tab, 'touch'):
64 raise page_action.PageActionNotSupported(
69 raise page_action.PageActionNotSupported(
105 page_action.EvaluateCallbackWithElement(
scroll_bounce.py 6 from telemetry.internal.actions import page_action
9 class ScrollBounceAction(page_action.PageAction):
15 synthetic_gesture_source=page_action.GESTURE_SOURCE_DEFAULT):
18 raise page_action.PageActionNotSupported(
52 raise page_action.PageActionNotSupported(
57 if not page_action.IsGestureSourceTypeSupported(tab, 'touch'):
58 raise page_action.PageActionNotSupported(
63 raise page_action.PageActionNotSupported(
95 page_action.EvaluateCallbackWithElement(
mouse_click.py 6 from telemetry.internal.actions import page_action
14 class MouseClickAction(page_action.PageAction):
41 page_action.EvaluateCallbackWithElement(
wait.py 5 from telemetry.internal.actions import page_action
8 class WaitForElementAction(page_action.PageAction):
19 page_action.EvaluateCallbackWithElement(
navigate.py 7 from telemetry.internal.actions import page_action
10 class NavigateAction(page_action.PageAction):
repaint_continuously.py 8 from telemetry.internal.actions import page_action
11 class RepaintContinuouslyAction(page_action.PageAction):
pinch.py 6 from telemetry.internal.actions import page_action
9 class PinchAction(page_action.PageAction):
13 synthetic_gesture_source=page_action.GESTURE_SOURCE_DEFAULT):
37 raise page_action.PageActionNotSupported(
71 page_action.EvaluateCallbackWithElement(
tap.py 7 from telemetry.internal.actions import page_action
10 class TapAction(page_action.PageAction):
14 synthetic_gesture_source=page_action.GESTURE_SOURCE_DEFAULT):
33 raise page_action.PageActionNotSupported(
70 page_action.EvaluateCallbackWithElement(
pinch_unittest.py 5 from telemetry.internal.actions import page_action
16 if not page_action.IsGestureSourceTypeSupported(self._tab, 'touch'):
load_media.py 7 from telemetry.internal.actions import page_action
34 raise page_action.PageActionFailed('Failed waiting for event "%s" on '
loop.py 5 """A Telemetry page_action that loops media playback.
17 from telemetry.internal.actions import page_action
40 raise page_action.PageActionFailed('Cannot loop media element(s) with '
media_action.py 11 from telemetry.internal.actions import page_action
14 class MediaAction(page_action.PageAction):
play.py 5 """A Telemetry page_action that performs the "play" action on media elements.
18 from telemetry.internal.actions import page_action
47 raise page_action.PageActionFailed('Cannot play media element(s) with '
repeatable_scroll.py 5 from telemetry.internal.actions import page_action
9 class RepeatableScrollAction(page_action.PageAction):
seek.py 5 """A Telemetry page_action that performs the "seek" action on media elements.
22 from telemetry.internal.actions import page_action
49 raise page_action.PageActionFailed('Cannot seek media element(s) with '
drag_unittest.py 10 from telemetry.internal.actions import page_action
37 except page_action.PageActionNotSupported:
action_runner_unittest.py 8 from telemetry.internal.actions import page_action
212 if not page_action.IsGestureSourceTypeSupported(
237 if not page_action.IsGestureSourceTypeSupported(
  /external/chromium-trace/catapult/telemetry/telemetry/internal/
story_runner.py 14 from telemetry.internal.actions import page_action
93 except page_action.PageActionNotSupported as e:
  /external/chromium-trace/catapult/telemetry/telemetry/page/
action_runner.py 15 from telemetry.internal.actions.page_action import GESTURE_SOURCE_DEFAULT
16 from telemetry.internal.actions.page_action import SUPPORTED_GESTURE_SOURCES

Completed in 928 milliseconds