-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy path8ad3b09f5b146a7e6a6e448ce71b3bd077e5849bf7b0ee487901edcbee8ac493.html
458 lines (395 loc) · 18.4 KB
/
8ad3b09f5b146a7e6a6e448ce71b3bd077e5849bf7b0ee487901edcbee8ac493.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Should be able to search for red things</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff"><link rel="stylesheet" href="bootstrap-icons/bootstrap-icons.css">
<!-- JQuery -->
<script type="text/javascript" src="scripts/jquery-1.11.1.min.js"></script><!-- Required Stylesheets -->
<link href="bootstrap-treeview/dist/bootstrap-treeview.min.css" rel="stylesheet">
<!-- Required Javascript -->
<script src="bootstrap-treeview/dist/bootstrap-treeview.min.js"></script><!-- DataTables -->
<link type="text/css" href="datatables/1.13.1/datatables.min.css" rel="stylesheet" />
<script type="text/javascript" src="datatables/1.13.1/datatables.min.js"></script>
<script type="text/javascript" src="datatables/1.13.1/time-elapsed-dhms.js"></script>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script src="bootstrap/js/bootstrap.min.js"></script>
<script>
jQuery.fn.dataTable.ext.type.order['time-elapsed-dhms-pre'] = function(data) {
var matches = data.match(/^(\d+(?:\.\d+)?)\s*([a-z]+)/i);
var multipliers = {
ms: 1,
s: 1000,
m: 60000,
h: 3600000,
d: 86400000
};
if (matches) {
var multiplier = multipliers[matches[2].toLowerCase()];
return parseFloat(matches[1]) * multiplier;
} else {
return -1;
};
};
</script>
<link rel="stylesheet" href="css/core.css"/>
<link rel="stylesheet" href="css/link.css"/>
<link type="text/css" media="screen" href="css/screen.css" rel="Stylesheet"/>
<!--CHART.JS-->
<script src="chartjs/chart.js"></script>
<script src="chartjs/[email protected]"></script>
<script src="chartjs/patternomaly.min.js"></script>
<script>
// Register the plugin to all charts:
Chart.register(ChartDataLabels);
</script>
<!-- JQuery-UI -->
<link type="text/css" href="jqueryui/1.11.2-start/jquery-ui.min.css" rel="Stylesheet" />
<script type="text/javascript" src="jqueryui/1.11.2-start/jquery-ui.min.js"></script><!-- DataTables -->
<link type="text/css" href="datatables/1.13.1/datatables.min.css" rel="stylesheet" />
<script type="text/javascript" src="datatables/1.13.1/datatables.min.js"></script>
<script type="text/javascript" src="datatables/1.13.1/time-elapsed-dhms.js"></script>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script src="bootstrap/js/bootstrap.min.js"></script>
<script>
jQuery.fn.dataTable.ext.type.order['time-elapsed-dhms-pre'] = function(data) {
var matches = data.match(/^(\d+(?:\.\d+)?)\s*([a-z]+)/i);
var multipliers = {
ms: 1,
s: 1000,
m: 60000,
h: 3600000,
d: 86400000
};
if (matches) {
var multiplier = multipliers[matches[2].toLowerCase()];
return parseFloat(matches[1]) * multiplier;
} else {
return -1;
};
};
</script>
<!-- ImgPreview -->
<script src="scripts/imgpreview.full.jquery.js" type="text/javascript"></script>
</head>
<body class="results-page">
<div id="topheader">
<div id="topbanner">
<div id="logo"><a href="index.html"><img src="images/serenity-logo.png" border="0"/></a></div>
<div id="projectname-banner" style="float:right">
<span class="projectname">
<span class="projecttitle">Serenity BDD Report</span>
<span class="projectsubtitle"></span>
</span>
</div>
</div>
</div>
<div class="middlecontent">
<div id="contenttop">
<div class="middlebg">
<span class="breadcrumbs">
<a href="index.html" class="breadcrumbs">Home</a>
<!-- inflection.of(breadcrumb.displayName).asATitle()-->
> <a href="97fabecd9fb00ce57129e9467755fd9d2cba6770be755f0f303258b999a52839.html">
When searching for terms
</a>
>
Should be able to search for red things
</span>
</div>
<div class="rightbg"></div>
</div>
<div class="clr"></div>
<!--/* starts second table*/-->
<div>
<ul class="nav nav-tabs" role="tablist">
<li class="active">
<a href="#"><i class="bi bi-journal-check"></i> Overall Test Results</a>
</li>
<li >
<a href="capabilities.html"><i class="bi bi-journal-text"></i> Requirements</a>
</li>
<li >
<a href="576946480b52ad056d6f5bddf874399c83582ecf90963cc074a14c70580e7d9f.html"><i class="bi bi-chat-text"></i> Features</a>
</li>
</ul>
<span class="date-and-time"><a href="build-info.html"><i class="bi bi-info-circle"></i></a> Report generated 21-01-2025 19:08</span>
<br style="clear:left"/>
</div>
<div class="clr"></div>
<div id="contentbody">
<div class="titlebar">
<div class="story-title">
<table class="outcome-header">
<tr>
<td>
<div>
<h3 class="discreet-story-header">
<i class="fs-2 bi bi-chat-left-quote title-icon"></i>
<span class="story-header-title">When Searching For Terms </span>
</h3>
</div>
</td>
<td valign="top">
<p class="tag">
<span class="badge example-tag tag-badge" style="background:default;">
<i class="bi bi-tag-fill"></i>
<a class="tagLink" style="background:default;"
href="6c5512236937b92cd7a296b24edb966c2bd94be46b8910f8b129a42d6150eb25.html">1 To 10 Seconds
(Duration)
</a>
</span>
<span class='context-icon'><i class='bi bi-browser-chrome' title='Chrome'></i> <i class='bi bi-ubuntu' title='Linux'></i></span>
</p>
</td>
</tr>
</table>
</div>
<div class="story-title">
<table class="outcome-header">
<tr>
<td colspan="2" class="test-title-bar">
<span class="outcome-icon"><a href='##beforetable'><i class='bi bi-check-circle-fill success-icon fa-2x' title='SUCCESS'></i></a></span>
<span class="test-case-title">
<span class="success-color">
Should be able to search for red things
<span class="related-issue-title"></span>
</span>
</span>
</td>
</tr>
</table>
</div>
<!-- CAST MEMBERS -->
<div> </div>
<div>
<h3 class="discreet-story-header">
<i class="fs-2 bi bi-people large-icon"></i>
<span class="story-header-title">
<a class="btn btn-primary" data-toggle="collapse" href="#castDetails"
role="button" aria-expanded="true" aria-controls="castDetails">Cast</a>
</span>
</h3>
</div>
<div class="collapse multi-collapse" id="castDetails">
<table class="cast">
<tr>
<td width="100%">
<h4>
<i class="fs-2 bi bi-person"></i>
<span>
<a data-toggle="collapse" href="#abilities-Actor"
aria-expanded="false" aria-controls="abilities">Actor</a>
</span>
</h4>
<div class="collapse multi-collapse" id="abilities-Actor">
</div>
</td>
</tr>
</table>
</div>
</div>
</td>
</tr>
</table>
</div>
<!-- END CAST MEMBERS -->
</div>
</div>
<div class="clr"></div>
<div id="beforetable"></div>
<div id="tablecontents">
<div>
<table class="step-table">
<tr class="step-titles">
<th width="65">
</th>
<th class="step-description-column greentext">
Steps
</th>
<th width="130" class="greentext">Outcome</th>
<th width="100" class="greentext"><i title="Duration" class="bi bi-stopwatch"></i></th>
</tr>
<tr class="step-table-separator">
<td colspan="5"></td>
</tr>
<tr class="test-SUCCESS">
<td width="50" class="step-icon">
<a name="0"></a>
<a href="javaScript:void(0)" onClick="toggleDiv('stepSection0')"
style="display:block">
<i class="bi bi-caret-right-square imgstepSection0 success-icon"
style="margin-left: 20px; float:left; padding-right:5px"></i>
</a>
</td>
<td class="step-description-column">
<div class="step-description">
<a href="javaScript:void(0)" onClick="toggleDiv('stepSection0')"
style="display:block;">
<span class="top-level-step">
Actor opens the DuckDuckGo home page
</span>
</a>
<span class="evidence">
</span>
</div>
</td>
<td width="130"><span class="top-level-step">SUCCESS</span></td>
<td width="100"><span class="top-level-step">695ms</span></td>
</tr>
<tr>
<td colspan="5">
<table id="stepSection0" class="step-table-nested" style="display:none;">
<tr class="test-SUCCESS">
<td width="70" class="step-icon">
<a name="0-0"></a>
<span style="margin-left: 40px;"
class="nested-group-icon"><a href='##beforetable'><i class='bi bi-check-circle-fill success-icon ' title='SUCCESS'></i></a>
</span>
</td>
<td class="step-description-column">
<div class="step-description">
<span class="nested-group-step">
Actor opens the Duck duck go home page
</span>
<span class="evidence">
</span>
</div>
</td>
<td width="130"><span class="nested-group-step">SUCCESS</span></td>
<td width="100"><span class="nested-group-step">691ms</span></td>
</tr>
</table>
</td>
</tr>
<tr class="test-SUCCESS">
<td width="50" class="step-icon">
<a name="1"></a>
<a href="javaScript:void(0)" onClick="toggleDiv('stepSection1')"
style="display:block">
<i class="bi bi-caret-right-square imgstepSection1 success-icon"
style="margin-left: 20px; float:left; padding-right:5px"></i>
</a>
</td>
<td class="step-description-column">
<div class="step-description">
<a href="javaScript:void(0)" onClick="toggleDiv('stepSection1')"
style="display:block;">
<span class="top-level-step">
Actor searches for 'red'
</span>
</a>
<span class="evidence">
</span>
</div>
</td>
<td width="130"><span class="top-level-step">SUCCESS</span></td>
<td width="100"><span class="top-level-step">281ms</span></td>
</tr>
<tr>
<td colspan="5">
<table id="stepSection1" class="step-table-nested" style="display:none;">
<tr class="test-SUCCESS">
<td width="70" class="step-icon">
<a name="1-0"></a>
<span style="margin-left: 40px;"
class="nested-group-icon"><a href='##beforetable'><i class='bi bi-check-circle-fill success-icon ' title='SUCCESS'></i></a>
</span>
</td>
<td class="step-description-column">
<div class="step-description">
<span class="nested-group-step">
Actor enters 'red' then hits [ENTER] into search field
</span>
<span class="evidence">
</span>
</div>
</td>
<td width="130"><span class="nested-group-step">SUCCESS</span></td>
<td width="100"><span class="nested-group-step">276ms</span></td>
</tr>
</table>
</td>
</tr>
<tr class="test-SUCCESS">
<td width="50" class="step-icon">
<a name="2"></a>
<span style="margin-left: 20px;"
class="top-level-icon"><a href='##beforetable'><i class='bi bi-check-circle-fill success-icon ' title='SUCCESS'></i></a>
</span>
</td>
<td class="step-description-column">
<div class="step-description">
<span class="top-level-step">
Actor should see the title of the page that contains (ignoring case): <[red]>
</span>
<span class="evidence">
</span>
</div>
</td>
<td width="130"><span class="top-level-step">SUCCESS</span></td>
<td width="100"><span class="top-level-step">010ms</span></td>
</tr>
<tr class="test-SUCCESS">
<td colspan="2"></td>
<td width="130"><span class="top-level-step"><em>SUCCESS</em></span></td>
<td width="100"><span class="top-level-step"><em>1.84s</em></span></td>
</tr>
</table>
</div>
</div>
<div id="beforefooter"></div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<span class="version">Serenity BDD version 4.2.13</span>
</div>
</div>
</div>
<script type="text/javascript">
function toggleDiv(divId) {
$("#" + divId).toggle();
var $icon = $(".img" + divId);
$icon.toggleClass("bi-caret-right-square");
$icon.toggleClass("bi-caret-down-square");
}
</script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function () {
$('img.screenshot').imgPreview({
imgCSS: {
width: '500px'
},
distanceFromCursor: {top: 10, left: -200}
});
});
//]]>
</script>
<div id="imgPreviewContainer" style="position: absolute; top: 612px; left: 355px; display: none; " class=""><img
src="" style="display: none; "></div>
<div id="imgPreviewContainer2" style="position: absolute; top: 925px; left: 320px; display: none; " class="">
<img style="width: 200px; display: none; " src=""></div>
<div id="imgPreviewWithStyles" style="position: absolute; top: 1272px; left: 321px; display: none; " class="">
<img style="height: 200px; opacity: 1; display: none; " src=""></div>
<div id="imgPreviewWithStyles2" style="display: none; position: absolute; "><img style="height: 200px; "></div>
<div id="imgPreviewWithStyles3" style="display: none; position: absolute; "><img style="height: 200px; "></div>
</div>
</body>
</html>