-
Notifications
You must be signed in to change notification settings - Fork 0
/
0085141a84b71a6f647e57ef4c7618ef7121062ee58bc43ca297eaa799f113d9_screenshots.html
263 lines (234 loc) · 15 KB
/
0085141a84b71a6f647e57ef4c7618ef7121062ee58bc43ca297eaa799f113d9_screenshots.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Screenshots</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>
<!-- Nivo Slider -->
<link rel="stylesheet" href="nivo-slider/3.2/nivo-slider.css" type="text/css" media="screen" />
<link rel="stylesheet" href="nivo-slider/3.2/themes/default/default.css" type="text/css" media="screen" />
<script src="nivo-slider/3.2/jquery.nivo.slider.pack.js" type="text/javascript"></script>
<script type="text/javascript">
function getUrlVars() {
var vars = {};
var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (m, key, value) {
vars[key] = value;
});
return vars;
}
var screenshotIndex = getUrlVars()["screenshot"];
$(window).load(function () {
$('#slider').nivoSlider({
startSlide: screenshotIndex,
effect: 'fade',
animSpeed: 200,
manualAdvance: true
});
});
$(window).keydown(function(e) {
switch(e.which) {
case 37:
$('a.nivo-prevNav').click();
break;
case 39:
$('a.nivo-nextNav').click();
break;
}
});
</script>
</head>
<body>
<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">eXpand Automation</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">Home</a>
> <span class="truncate-40"><a
href="9be88155184abe59de544b89a98346c945cfd1ae7c965a52964c83e57b058f63.html">Modificar Pausas</a></span>
> <span class="truncate-60"><a
href="0085141a84b71a6f647e57ef4c7618ef7121062ee58bc43ca297eaa799f113d9.html">Modificar pausa correctamente </a></span>
> Screenshots
</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="dafb266f68444cb7f2451c923d70c1428ac45470c361842b818e6daa9bcd4fa8.html"><i class="bi bi-chat-text"></i> Themes</a>
</li>
<li >
<a href="7ea0a5e2d679b9deeda9910ae4a9bcd3a281e0d908303a9e16e486103e98880c.html"><i class="bi bi-chat-text"></i> Capabilities</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 14-04-2023 17:47</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 large-icon"></i>
<span class="story-header-title">Modificar Pausas </span>
<span class="badge tag-badge" style="">Feature</span>
</h3>
<div class="discreet-requirement-narrative-title">
Como agente logueado en el sistema, quiero poder modificar las pausas, para poder cambiar la utilidad que les damos
</div>
</div>
</td>
<td valign="top" align="right">
</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">Modificar pausa correctamente
<span class="related-issue-title"></span>
</span>
</span>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="clr"></div>
<div id="beforetable"></div>
<div id="contenttilttle">
<div class="slider-wrapper theme-default">
<div id="slider">
<img src="5dfebf6541f25dd248fd12606f2521a9d479a66182d1c435e157d0c41e18ffad.png" title=" Given Un agente que ingresa a la seccion de pausas" width="1920"/>
<img src="5dfebf6541f25dd248fd12606f2521a9d479a66182d1c435e157d0c41e18ffad.png" title=" Nahuel opens the Login pom" width="1920"/>
<img src="5dfebf6541f25dd248fd12606f2521a9d479a66182d1c435e157d0c41e18ffad.png" title=" Nahuel enters 'nahuel.silvera' into The input for the username" width="1920"/>
<img src="05f344aae694eac353aa6a7c6af933dc504ee3f699a369b108169699d2d4148f.png" title=" Nahuel enters 'nahuel.silvera' into The input for the username (completed)" width="1920"/>
<img src="05f344aae694eac353aa6a7c6af933dc504ee3f699a369b108169699d2d4148f.png" title=" Nahuel enters 'abcd1234' into The input for the password" width="1920"/>
<img src="50c7fbf6d134392b893a2f49b7526acc45de7f5c830a207f966a9234b790a77a.png" title=" Nahuel enters 'abcd1234' into The input for the password (completed)" width="1920"/>
<img src="50c7fbf6d134392b893a2f49b7526acc45de7f5c830a207f966a9234b790a77a.png" title=" Nahuel clicks on The button for login" width="1920"/>
<img src="2e936deb56efeae9644eaa67d8dce3e59113f3e313eb211237653f7033235e07.png" title=" Nahuel clicks on The button for login (completed)" width="1920"/>
<img src="2e936deb56efeae9644eaa67d8dce3e59113f3e313eb211237653f7033235e07.png" title=" Nahuel go to the sectionPausas" width="1920"/>
<img src="2e936deb56efeae9644eaa67d8dce3e59113f3e313eb211237653f7033235e07.png" title=" Nahuel open the side menu" width="1920"/>
<img src="0ea82a175c36dd11afd429f58e154913105458f923b0a0ee9e8c5f0b8b9408d6.png" title=" Nahuel clicks on The button for access to the tools menu" width="1920"/>
<img src="e59ee2cb9ff3437829c798d5796713530c9637ca800c5bf89c612b2d107796f8.png" title=" Nahuel clicks on The button for access to the tools menu (completed)" width="1920"/>
<img src="e59ee2cb9ff3437829c798d5796713530c9637ca800c5bf89c612b2d107796f8.png" title=" Nahuel open the side menu (completed)" width="1920"/>
<img src="e59ee2cb9ff3437829c798d5796713530c9637ca800c5bf89c612b2d107796f8.png" title=" Nahuel enters 'Pausas' into The search bar" width="1920"/>
<img src="0a8b779ea49c9a01844bdaaae1f6649ab1ff835c885309543900a2a608ea98e0.png" title=" Nahuel enters 'Pausas' into The search bar (completed)" width="1920"/>
<img src="0a8b779ea49c9a01844bdaaae1f6649ab1ff835c885309543900a2a608ea98e0.png" title=" Nahuel clicks on The button for go to the pauses section" width="1920"/>
<img src="f54219c4521f03ce0b90eb4cdac923754e138b958996555acf68893d4b7db0e4.png" title=" Nahuel clicks on The button for go to the pauses section (completed)" width="1920"/>
<img src="f54219c4521f03ce0b90eb4cdac923754e138b958996555acf68893d4b7db0e4.png" title=" Nahuel go to the sectionPausas (completed)" width="1920"/>
<img src="f54219c4521f03ce0b90eb4cdac923754e138b958996555acf68893d4b7db0e4.png" title=" Given Un agente que ingresa a la seccion de pausas (completed)" width="1920"/>
<img src="606052356b784fe122dd2460341cbc44aa8dbbfdf5e989d63e31087b577edbfb.png" title=" When El agente modifica la pausa colocando una nueva descripcion valida" width="1920"/>
<img src="606052356b784fe122dd2460341cbc44aa8dbbfdf5e989d63e31087b577edbfb.png" title=" Nahuel clicks on The button to show the register options" width="1920"/>
<img src="23af508908f38a46712a6f33ad74db23734044ee077900f40d3ce9f54fe076a1.png" title=" Nahuel clicks on The button to show the register options (completed)" width="1920"/>
<img src="23af508908f38a46712a6f33ad74db23734044ee077900f40d3ce9f54fe076a1.png" title=" Nahuel clicks on The button to modify the register" width="1920"/>
<img src="9494efc0d33f181558feb4cc5fa0a5ad9e2d8aad5595439e271322530ad791fd.png" title=" Nahuel clicks on The button to modify the register (completed)" width="1920"/>
<img src="9494efc0d33f181558feb4cc5fa0a5ad9e2d8aad5595439e271322530ad791fd.png" title=" Nahuel enters 'qd2ym26WHynjd3G7lUxvwA5ES8YVnN6l625GTesQzTuo2nEqqyEgkvRFLjxTkT5uu1Ndj3jYUUIdD581TdtMb8iavrZN0Nj' into The input to place the pause description" width="1920"/>
<img src="52f1120482371367fa1fce24e4d46bd93f2a0395df3b5829103352fc81763aa4.png" title=" Nahuel enters 'qd2ym26WHynjd3G7lUxvwA5ES8YVnN6l625GTesQzTuo2nEqqyEgkvRFLjxTkT5uu1Ndj3jYUUIdD581TdtMb8iavrZN0Nj' into The input to place the pause description (completed)" width="1920"/>
<img src="52f1120482371367fa1fce24e4d46bd93f2a0395df3b5829103352fc81763aa4.png" title=" Nahuel clicks on The button to finish the creation of the pause" width="1920"/>
<img src="a65a7a9b839526e0699d50af400430d90a256b2614b9e7ba874912eba74cc103.png" title=" Nahuel clicks on The button to finish the creation of the pause (completed)" width="1920"/>
<img src="a65a7a9b839526e0699d50af400430d90a256b2614b9e7ba874912eba74cc103.png" title=" When El agente modifica la pausa colocando una nueva descripcion valida (completed)" width="1920"/>
<img src="53b31bae9e9b73eaeff02295a41993efbd4608034fa67ea31c8f023a27887b24.png" title=" Then El agente puede guardar correctamente la pausa" width="1920"/>
<img src="53b31bae9e9b73eaeff02295a41993efbd4608034fa67ea31c8f023a27887b24.png" title=" Nahuel clicks on The button for use all filters" width="1920"/>
<img src="13bbcc22462ca05ff712a1d58f31a222716d9e220454b29cb9023071bb713779.png" title=" Nahuel clicks on The button for use all filters (completed)" width="1920"/>
<img src="2c91f3a041a3d546d05086f8ad2f86780e454c25ef9b2bdcbf87dd4cfb980029.png" title=" Nahuel should see The label that show the DTMF of the Pause with text value that is equal to: <"0">" width="1920"/>
<img src="c48f6f43758ecaa1bad05760a21d36c2b57407cb538cd4a4af83d3eae87906d2.png" title=" Nahuel should see The label that show the DTMF of the Pause with text value that is equal to: <"0"> (completed)" width="1920"/>
<img src="c48f6f43758ecaa1bad05760a21d36c2b57407cb538cd4a4af83d3eae87906d2.png" title=" Then El agente puede guardar correctamente la pausa (completed): <span class='success-color'>SUCCESS</span>" width="1920"/>
</div>
</div>
</div>
</div>
<div id="beforefooter"></div>
<div id="bottomfooter">
<span class="version">Serenity BDD version 3.6.12</span>
</div>
</body>
</html>