-
Notifications
You must be signed in to change notification settings - Fork 3
/
Extensions.html
222 lines (194 loc) · 8.7 KB
/
Extensions.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
<?xml version="1.0" encoding="UTF-8" ?>
<!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>Concordion - Extensions</title>
<link media="all" rel="stylesheet" type="text/css" href="css/default.css"/>
<link media="print" rel="stylesheet" type="text/css" href="css/print.css"/>
<link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico" />
<style>
.extensionLabel {
font-weight: bold;
}
table {
width: 100%;
border-collapse: collapse;
empty-cells: show;
margin: 8px 0px 8px 0px;
}
th, td {
border: 1px solid black;
padding: 3px 5px 4px 5px;
}
td {
background-color: white;
}
th {
background-color: #d5dae8;
}
.col-1 {
width: 20%;
}
.col-2 {
width: 65%;
}
.col-3 {
width: 15%;
}
</style>
</head>
<body>
<div class="page">
<div class="header">
<div id="google_translate_element" class="language-translation"></div>
<div class="logo"><a href="index.html"> <img src="image/front-page-banner.png" alt="Specification by Example" /> </a></div>
</div><!-- header -->
<div class="menuBar">
<ul class="menu">
<li><a href="/">Home</a></li>
<li><a href="Example.html">Example</a></li>
<li><a href="Tutorial.html">Tutorial</a></li>
<li><a href="Technique.html">Hints and Tips</a></li>
<li><a href="ExtensionsAPI.html">Extensions API</a></li>
<li class="selectedTab"><a href="Extensions.html">Extensions</a></li>
<li><a href="Download.html">Download</a></li>
<li><a href="Questions.html">FAQ</a></li>
</ul>
</div><!-- menuBar -->
<div class="content">
<h1>Extensions</h1>
<p class="subtext">
This page lists extensions that add features to Concordion. See the <a href="ExtensionsAPI.html">Extensions API<a> for details of how to create extensions.
</p>
<h2><a name="input"/>Alternative Run Strategies</a></h2>
<table>
<tr>
<th class="col-1">Extension</th>
<th class="col-2">Description</th>
<th class="col-3">Maintainer</th>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-parallel-run-extension">Parallel Run</a></td>
<td>runs specifications in parallel when using the concordion:run command</td>
<td><a href="https://github.com/nigelcharman">Nigel Charman</a></td>
</tr>
</table>
<h2><a name="input"/>Alternative Input Sources</a></h2>
<table>
<tr>
<th class="col-1">Extension</th>
<th class="col-2">Description</th>
<th class="col-3">Maintainer</th>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-excel-extension">Excel</a></td>
<td>enables Concordion to use an Excel spreadsheet as an input specification</td>
<td><a href="https://github.com/robmoffat">Rob Moffat</a></td>
</tr>
</table>
<!--h2>Alternative Output Targets</h2-->
<h2><a name="enhancers"/>Specification Enhancers</a></h2>
<table>
<tr>
<th class="col-1">Extension</th>
<th class="col-2">Description</th>
<th class="col-3">Maintainer</th>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-screenshot-extension">Screenshot</a></td>
<td>adds screenshots to Concordion output to diagnose problems or improve the documentation</td>
<td><a href="https://github.com/nigelcharman">Nigel Charman</a></td>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-storyboard-extension">Storyboard</a></td>
<td>captures screenshots or data in a storyboard format to provide insight into the actions a test has taken</td>
<td><a href="https://github.com/andrew-sumner">Andrew Sumner</a></td>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-logging-tooltip-extension">Logging Tooltip</a></td>
<td>adds logging information as tooltips to the Concordion output</td>
<td><a href="https://github.com/nigelcharman">Nigel Charman</a></td>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-logback-extension">Logback</a></td>
<td>adds <a class="externalLink" href="http://logback.qos.ch/">Logback</a> logging information as tooltips and as a link to the log file. Supports parallel runner</td>
<td><a href="https://github.com/andrew-sumner">Andrew Sumner</a></td>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-collapse-output-extension">Collapse Output</a></td>
<td>makes elements with a specific style class collapsible in the Concordion report</td>
<td><a href="https://github.com/carlo-mr">Carlo M-R</a></td>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-input-style-extension">Input Style</a></td>
<td>adds CSS styling for input elements in the Concordion output</td>
<td><a href="https://github.com/johnbhurst">John Hurst</a><br/><a href="https://github.com/tommyli">Tommy Yim Li</a></td>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-run-totals-extension">Run Totals</a></td>
<td>displays the total number of child tests passing and failing, when using the concordion:run command</td>
<td><a href="https://github.com/drtimwright">Tim Wright</a></td>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-timestamp-formatter-extension">Timestamp Formatter</a></td>
<td>changes the footer of the Concordion output to show hours, minutes and seconds</td>
<td><a href="https://github.com/nigelcharman">Nigel Charman</a></td>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-exception-translator-extension">Exception Translator</a></td>
<td>modifies the text of exception messages</td>
<td><a href="https://github.com/nigelcharman">Nigel Charman</a></td>
</tr>
</table>
<h2><a name="commands"/>Additional Commands</a></h2>
<table>
<tr>
<th class="col-1">Extension</th>
<th class="col-2">Description</th>
<th class="col-3">Maintainer</th>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-screenshot-extension">Screenshot</a></td>
<td>adds screenshots to Concordion output to diagnose problems or improve the documentation</td>
<td><a href="https://github.com/nigelcharman">Nigel Charman</a></td>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-embed-extension">Embed</a></td>
<td>embeds HTML in the Concordion output</td>
<td><a href="https://github.com/nigelcharman">Nigel Charman</a></td>
</tr>
<tr>
<td><a class="extensionLabel" href="http://github.com/concordion/concordion-executeonlyif-extension">Execute Only If</a></td>
<td>conditionally executes child tests</td>
<td><a href="https://github.com/andrew-sumner">Andrew Sumner</a></td>
</tr>
</table>
</ul>
<br/>
<h1><a name="Note"/>Notes</h1>
<p>The combined concordion-extensions project has been deprecated, and split into the separate projects above.
</p>
<p>Additional contributions are welcome. Please get in touch on the <a class="externalLink" href="http://groups.google.com/forum/#!forum/concordion-dev">concordion-dev list.</a>
</p>
</div> <!-- content -->
</div> <!-- page -->
<div class="copyright">
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
</div> <!-- copyright -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58172036-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE, gaTrack: true, gaId: 'UA-58172036-1'}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</body>
</html>