forked from toolness/bugzilla-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
black-box.html
43 lines (43 loc) · 1.28 KB
/
black-box.html
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
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css" media="all"
href="css/black-box.css" />
<title>Bugzilla Dashboard - Black Box</title>
</head>
<body>
<h1 class="title">Bugzilla Dashboard - Black Box</h1>
<p>
This page contains a Bugzilla Dashboard plugged-in to a
toy Bugzilla database. You can log into it with the
username "[email protected]" and password "test".
</p>
<p>
You can also select a test that automates some
common UI actions for you.
</p>
<p>
This page is intended as an aid to system testing. The
Bugzilla Dashboard also has a <a href="tests.html"
target="unitTests">unit test suite</a>.
</p>
<div id="dashboard-container">
<iframe src="about:blank" id="dashboard"></iframe>
</div>
<div id="messages"></div>
<span class="test-button" id="testLoginWithNoPassword">
Login without Password
</span>
<span class="test-button" id="testLoginWithCorrectPassword">
Login with Correct Password
</span>
<span class="test-button" id="testLoginWithIncorrectPassword">
Login with Incorrect Password
</span>
</body>
<!-- Base Scripts -->
<script src="js/jquery.js"></script>
<script src="js/require.js"></script>
<script src="js/modules/mocks.js"></script>
<script src="js/black-box.js"></script>
</html>