-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
112 lines (95 loc) · 4.38 KB
/
index.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>VTAF Report</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/stylesheet.css">
<link rel="stylesheet" href="bower_components/fancybox/source/jquery.fancybox.css">
</head>
<body>
<section>
<div class="container">
<h1><i>VTAF</i></h1>
<p><i>Automation as never before.</i>
</p>
</div>
<div class="container container-white">
<h3>Report Details</h3>
<div class="details">
<div class="col-md-6">
<div class="col-md-6">
<h4><i class="glyphicon glyphicon-calendar"></i> Execution Time:</h4>
<h5 id="exetime">Unknown</h5>
<h4><i class="glyphicon glyphicon-cd"></i> Operating System:</h4>
<h5 id="osystem">Unknown</h5>
<h4><i class="glyphicon glyphicon-calendar"></i> Language</h4>
<h5 id="lang">Unknown</h5>
<h4><i class="glyphicon glyphicon-calendar"></i> Total Errors</h4>
<h5 id="totalerror">0</h5>
</div>
<div class="col-md-6">
<h4><i class="glyphicon glyphicon-calendar"></i> Computer Name</h4>
<h5 id="cname">Unknown</h5>
<h4><i class="glyphicon glyphicon-calendar"></i> Screen Dimensions </h4>
<h5 id="screensize">Unknown</h5>
<h4><i class="glyphicon glyphicon-calendar"></i> Duration </h4>
<h5 id="duration">Unknown</h5>
<h4><i class="glyphicon glyphicon-calendar"></i> Total Warnings</h4>
<h5 id="totalwarning">0</h5>
</div>
</div>
<div class="col-md-6">
<div class="text-center">
<canvas id="myChart" width="150" height="150"></canvas>
</div>
<div class="col-sm-3">
<p><span class="green"></span><span id="pass"></span>
</p>
</div>
<div class="col-sm-3">
<p><span class="red"></span><span id="fail"></span>
</p>
</div>
</div>
</div>
</div>
<div class="container container-white">
<div class="row dark-row">
<div class="col-md-12">
<div class="pull-left">
<button id="exapand" class="btn btn-base btn-sm">Expand</button>
<button id="collapse" class="btn btn-base btn-sm">Collapse</button>
</div>
<div class="pull-right">
<label>Test Case Filter :</label>
<input id="passchk" type="checkbox" name="radiogroup" value="RadioButton" checked="true" /> Pass
<input id="failchk" type="checkbox" name="radiogroup" value="RadioButton" checked="true" /> Fail
<input type="checkbox" name="radiogroup" value="RadioButton" /> Blocked
</div>
</div>
</div>
<div class="row">
<div class="container">
<div id="tree">
</div>
</div>
</div>
</div>
</section>
<section>
<footer class="text-center">
<p>© Virtusa 2015.</p>
<p>All rights reserved.</p>
</footer>
</section>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/jquery.xml2json/src/jquery.xml2json.js"></script>
<script src="bower_components/jQuery-Collapse/src/jquery.collapse.js"></script>
<script src="bower_components/chartjs/Chart.min.js"></script>
<script src="bower_components/fancybox/source/jquery.fancybox.pack.js"></script>
<script src="js/app.js"></script>
</body>
</html>