|
24 | 24 |
|
25 | 25 | <% if (scenario.ambiguous) { %>
|
26 | 26 | <li>
|
27 |
| - <span class="step ambiguous-background" data-toggle="tooltip" data-placement="top" title="Scenario has double step implementation and failed because of that."> |
| 27 | + <span class="step ambiguous-background" data-bs-toggle="tooltip" data-placement="top" title="Scenario has double step implementation and failed because of that."> |
28 | 28 | <%= scenario.ambiguous %>
|
29 | 29 | </span>
|
30 | 30 | </li>
|
31 | 31 | <% } %>
|
32 | 32 |
|
33 | 33 | <% if (scenario.pending) { %>
|
34 | 34 | <li>
|
35 |
| - <span class="step pending-background" data-toggle="tooltip" title="Scenario is pending"><%= scenario.pending %></span> |
| 35 | + <span class="step pending-background" data-bs-toggle="tooltip" title="Scenario is pending"><%= scenario.pending %></span> |
36 | 36 | </li>
|
37 | 37 | <% } %>
|
38 | 38 |
|
39 | 39 | <% if (scenario.skipped) { %>
|
40 | 40 | <li>
|
41 |
| - <span class="step skipped-background" data-toggle="tooltip" title="Scenario is skipped"><%= scenario.skipped %></span> |
| 41 | + <span class="step skipped-background" data-bs-toggle="tooltip" title="Scenario is skipped"><%= scenario.skipped %></span> |
42 | 42 | </li>
|
43 | 43 | <% } %>
|
44 | 44 |
|
45 | 45 | <% if (scenario.failed) { %>
|
46 | 46 | <li>
|
47 |
| - <span class="step failed-background" data-toggle="tooltip" title="Scenario failed"><%= scenario.failed %></span> |
| 47 | + <span class="step failed-background" data-bs-toggle="tooltip" title="Scenario failed"><%= scenario.failed %></span> |
48 | 48 | </li>
|
49 | 49 | <% } %>
|
50 | 50 |
|
51 | 51 | <% if (scenario.passed) { %>
|
52 | 52 | <li>
|
53 |
| - <span class="step passed-background" data-toggle="tooltip" title="Scenario passed"><%= scenario.passed %></span> |
| 53 | + <span class="step passed-background" data-bs-toggle="tooltip" title="Scenario passed"><%= scenario.passed %></span> |
54 | 54 | </li>
|
55 | 55 | <% } %>
|
56 | 56 |
|
57 | 57 | <% if (scenario.notDefined) { %>
|
58 | 58 | <li>
|
59 |
| - <span class="step not-defined-background" data-toggle="tooltip" title="Scenario has nop step implementation."><%= scenario.notDefined %></span> |
| 59 | + <span class="step not-defined-background" data-bs-toggle="tooltip" title="Scenario has nop step implementation."><%= scenario.notDefined %></span> |
60 | 60 | </li>
|
61 | 61 | <% } %>
|
62 | 62 |
|
|
80 | 80 | <% if(step.result) { %>
|
81 | 81 | <% if(step.result.status.toLowerCase() === 'passed') { %>
|
82 | 82 | <div class="label" title="Success">
|
83 |
| - <i class="fa fa-check-circle fa-2x passed-color" data-toggle="tooltip" data-placement="top" title="Step passed"></i> |
| 83 | + <i class="fa fa-check-circle fa-2x passed-color" data-bs-toggle="tooltip" data-placement="top" title="Step passed"></i> |
84 | 84 | </div>
|
85 | 85 | <% } else if(step.result.status.toLowerCase() === 'failed') { %>
|
86 |
| - <div class="label" data-toggle="tooltip" data-placement="top" title="Step failed"> |
| 86 | + <div class="label" data-bs-toggle="tooltip" data-placement="top" title="Step failed"> |
87 | 87 | <i class="fa fa-exclamation-circle fa-2x failed-color"></i>
|
88 | 88 | </div>
|
89 | 89 | <% } else if(step.result.status.toLowerCase() === 'skipped') { %>
|
90 |
| - <div class="label" data-toggle="tooltip" data-placement="top" title="Step is skipped"> |
| 90 | + <div class="label" data-bs-toggle="tooltip" data-placement="top" title="Step is skipped"> |
91 | 91 | <i class="fa fa-arrow-circle-right fa-2x skipped-color"></i>
|
92 | 92 | </div>
|
93 | 93 | <% } else if(step.result.status.toLowerCase() === 'pending') { %>
|
94 |
| - <div class="label" data-toggle="tooltip" data-placement="top" title="Step is pending"> |
| 94 | + <div class="label" data-bs-toggle="tooltip" data-placement="top" title="Step is pending"> |
95 | 95 | <i class="fa fa-minus-circle fa-2x pending-color"></i>
|
96 | 96 | </div>
|
97 | 97 | <% } else if(step.result.status.toLowerCase() === 'ambiguous') { %>
|
98 |
| - <div class="label" data-toggle="tooltip" data-placement="top" title="Step has double step implementation and failed because of that."> |
| 98 | + <div class="label" data-bs-toggle="tooltip" data-placement="top" title="Step has double step implementation and failed because of that."> |
99 | 99 | <i class="fa fa-flash fa-2x ambiguous-color"></i>
|
100 | 100 | </div>
|
101 | 101 | <% } else { %>
|
102 |
| - <div class="label" data-toggle="tooltip" data-placement="top" title="Step has no implementation."> |
| 102 | + <div class="label" data-bs-toggle="tooltip" data-placement="top" title="Step has no implementation."> |
103 | 103 | <i class="fa fa-question-circle fa-2x not-defined-color"></i>
|
104 | 104 | </div>
|
105 | 105 | <% } %>
|
|
111 | 111 | <% if(step.name) { %>
|
112 | 112 | <%= step.name.replace(/</g, '<').replace(/>/g, '>') %>
|
113 | 113 | <% if(step.restWireData) { %>
|
114 |
| - <button type="button" class="btn btn-success btn-sm" data-toggle="collapse" data-target="#<%= step.id%>">REST Query</button> |
| 114 | + <button type="button" class="btn btn-success btn-sm" data-bs-toggle="collapse" data-target="#<%= step.id%>">REST Query</button> |
115 | 115 | <div id="<%= step.id%>" class="collapse">
|
116 | 116 | <div class="panel panel-default">
|
117 | 117 | <div class="panel-body">
|
|
150 | 150 | <% } %>
|
151 | 151 |
|
152 | 152 | <% if (step.result.error_message) { %>
|
153 |
| - <a href="#error<%= scenarioIndex %>-<%= stepIndex %>-error" data-toggle="collapse">+ Show Error</a> |
| 153 | + <a href="#error<%= scenarioIndex %>-<%= stepIndex %>-error" data-bs-toggle="collapse">+ Show Error</a> |
154 | 154 | <% } %>
|
155 | 155 |
|
156 | 156 | <% if (step.json) { %>
|
157 |
| - <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-json" data-toggle="collapse">+ Show Info</a> |
| 157 | + <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-json" data-bs-toggle="collapse">+ Show Info</a> |
158 | 158 | <% } %>
|
159 | 159 |
|
160 | 160 | <% if (step.text) { %>
|
161 |
| - <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-text" data-toggle="collapse">+ Show Info</a> |
| 161 | + <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-text" data-bs-toggle="collapse">+ Show Info</a> |
162 | 162 | <% } %>
|
163 | 163 |
|
164 | 164 | <% if (step.html) { %>
|
165 |
| - <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-html" data-toggle="collapse">+ Show Info</a> |
| 165 | + <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-html" data-bs-toggle="collapse">+ Show Info</a> |
166 | 166 | <% } %>
|
167 | 167 |
|
168 | 168 | <% if (step.image) { %>
|
169 |
| - <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-image" data-toggle="collapse">+ Screenshot</a> |
| 169 | + <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-image" data-bs-toggle="collapse">+ Screenshot</a> |
170 | 170 | <% } %>
|
171 | 171 |
|
172 | 172 | <% if (step.video) { %>
|
173 |
| - <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-video" data-toggle="collapse">+ Video</a> |
| 173 | + <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-video" data-bs-toggle="collapse">+ Video</a> |
174 | 174 | <% } %>
|
175 | 175 |
|
176 | 176 | <% if (!_.isEmpty(step.attachments)) { %>
|
177 | 177 | <span>[</span>
|
178 | 178 | <% _.each(step.attachments, function(attachment, attachmentIndex) { %>
|
179 |
| - <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-attachment<%= attachmentIndex %>" data-toggle="collapse">Attachment</a> |
| 179 | + <a href="#info<%= scenarioIndex %>-<%= stepIndex %>-attachment<%= attachmentIndex %>" data-bs-toggle="collapse">Attachment</a> |
180 | 180 | <% if ( attachmentIndex < ( _.size(step.attachments) - 1 ) ) { %>
|
181 | 181 | <span>,</span>
|
182 | 182 | <% } %>
|
|
0 commit comments