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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# 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.
# pylint: disable=W0401,W0614
from telemetry.page.actions.all_page_actions import *
from telemetry.page import page as page_module
from telemetry.page import page_set as page_set_module
class WebrtcCasesPage(page_module.Page):
def __init__(self, url, page_set):
super(WebrtcCasesPage, self).__init__(url=url, page_set=page_set)
class Page1(WebrtcCasesPage):
""" Why: Simple test page only showing a local video stream """
def __init__(self, page_set):
super(Page1, self).__init__(
url='file://webrtc/local-video.html',
page_set=page_set)
def RunWebrtc(self, action_runner):
action_runner.NavigateToPage(self)
action_runner.Wait(10)
action_runner.ExecuteJavaScript('checkForErrors();')
class Page2(WebrtcCasesPage):
""" Why: Loopback video call using the PeerConnection API. """
def __init__(self, page_set):
super(Page2, self).__init__(
url='file://third_party/webrtc/samples/js/demos/html/pc1.html',
page_set=page_set)
def RunEndure(self, action_runner):
action_runner.ClickElement('button[id="btn1"]')
action_runner.Wait(2)
action_runner.ClickElement('button[id="btn2"]')
action_runner.Wait(10)
action_runner.ClickElement('button[id="btn3"]')
def RunWebrtc(self, action_runner):
action_runner.ClickElement('button[id="btn1"]')
action_runner.Wait(2)
action_runner.ClickElement('button[id="btn2"]')
action_runner.Wait(10)
action_runner.ClickElement('button[id="btn3"]')
class WebrtcCasesPageSet(page_set_module.PageSet):
""" WebRTC tests for Real-time audio and video communication. """
def __init__(self):
super(WebrtcCasesPageSet, self).__init__(
serving_dirs=['third_party/webrtc/samples/js'])
self.AddPage(Page1(self))
self.AddPage(Page2(self))
|