OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 # pylint: disable=W0401,W0614 | 4 # pylint: disable=W0401,W0614 |
5 from telemetry.page.actions.all_page_actions import * | 5 from telemetry.page.actions.all_page_actions import * |
6 from telemetry.page import page as page_module | 6 from telemetry.page import page as page_module |
7 from telemetry.page import page_set as page_set_module | 7 from telemetry.page import page_set as page_set_module |
8 | 8 |
9 | 9 |
10 class WebrtcCasesPage(page_module.Page): | 10 class WebrtcCasesPage(page_module.Page): |
11 | 11 |
12 def __init__(self, url, page_set): | 12 def __init__(self, url, page_set): |
13 super(WebrtcCasesPage, self).__init__(url=url, page_set=page_set) | 13 super(WebrtcCasesPage, self).__init__(url=url, page_set=page_set) |
14 | 14 |
15 | 15 |
16 class Page1(WebrtcCasesPage): | 16 class Page1(WebrtcCasesPage): |
17 | 17 |
18 """ Why: Simple test page only showing a local video stream """ | 18 """ Why: Simple test page only showing a local video stream """ |
19 | 19 |
20 def __init__(self, page_set): | 20 def __init__(self, page_set): |
21 super(Page1, self).__init__( | 21 super(Page1, self).__init__( |
22 url='file://webrtc/local-video.html', | 22 url='file://webrtc/local-video.html', |
23 page_set=page_set) | 23 page_set=page_set) |
24 | 24 |
25 def RunWebrtc(self, action_runner): | 25 def RunWebrtc(self, action_runner): |
26 action_runner.RunAction(NavigateAction()) | 26 action_runner.NavigateToPage(self) |
27 action_runner.RunAction(WaitAction( | 27 action_runner.RunAction(WaitAction( |
28 { | 28 { |
29 'seconds': 10 | 29 'seconds': 10 |
30 })) | 30 })) |
31 action_runner.RunAction(JavascriptAction( | 31 action_runner.RunAction(JavascriptAction( |
32 { | 32 { |
33 'expression': 'checkForErrors();' | 33 'expression': 'checkForErrors();' |
34 })) | 34 })) |
35 | 35 |
36 | 36 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 class WebrtcCasesPageSet(page_set_module.PageSet): | 91 class WebrtcCasesPageSet(page_set_module.PageSet): |
92 | 92 |
93 """ WebRTC tests for Real-time audio and video communication. """ | 93 """ WebRTC tests for Real-time audio and video communication. """ |
94 | 94 |
95 def __init__(self): | 95 def __init__(self): |
96 super(WebrtcCasesPageSet, self).__init__( | 96 super(WebrtcCasesPageSet, self).__init__( |
97 serving_dirs=['third_party/webrtc/samples/js']) | 97 serving_dirs=['third_party/webrtc/samples/js']) |
98 | 98 |
99 self.AddPage(Page1(self)) | 99 self.AddPage(Page1(self)) |
100 self.AddPage(Page2(self)) | 100 self.AddPage(Page2(self)) |
OLD | NEW |