-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
405 lines (352 loc) · 18.6 KB
/
index.html
File metadata and controls
405 lines (352 loc) · 18.6 KB
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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111647111-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-111647111-1');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tastee — test tool : test made Natural</title>
<meta name="Description" content="Tastee is a tool that helps you write interactive tests using
ubiquitous executable specifications or your domain specific language (DSL). It can be used in any conventional way of testing UI but
also fits really well with Behavior Driven Development (BDD) keeping your specification, tests and
documentation up to date without the need of any developer's skills">
<link rel="icon" type="image/x-icon" href="img/tastee.png">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" />
<link rel="stylesheet" href="css/tastee.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body>
<div id="fb-root"></div>
<script>(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/fr_FR/sdk.js#xfbml=1&version=v2.7";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<nav class="red lighten-1" role="navigation">
<div class="nav-wrapper container">
<a href="#" data-activates="mobile" class="button-collapse">
<i class="material-icons">menu</i>
</a>
<a id="logo-container" href="#" class="brand-logo">
<img src="img/tastee.png" height="54px" alt="Tastee logo" class="logo-img">
</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li>
<a href="#behaviors">BDD</a>
</li>
<li>
<a href="#gettingstarted">Getting started</a>
</li>
<li>
<a href="#features">Features</a>
</li>
<li>
<a href=" docs/index.html" id="documentationLink">Documentation</a>
</li>
</ul>
<ul class="side-nav" id="mobile">
<li>
<a href="#behaviors">BDD</a>
</li>
<li>
<a href="#gettingstarted">Getting started</a>
</li>
<li>
<a href="#features">Features</a>
</li>
<li>
<a href=" docs/index.html" id="documentationLink">Documentation</a>
</li>
</ul>
</div>
</nav>
<div id="index-banner" class="parallax-container">
<div class="section no-pad-bot">
<div class="container">
<h1 class="header center teal-text text-lighten-2">Tastee</h1>
<div class="row center">
<h5 class="header col s12 light">Toast your Application with Simple Tests End to End</h5>
</div>
<div class="row center">
<a href="#gettingstarted" id="download-button" class="btn-large waves-effect waves-light #e57373 red lighten-2">Get Started</a>
</div>
</div>
</div>
<div class="parallax">
<img src="img/home.png" alt="Tastee home">
</div>
</div>
<div class="section" id="behaviors">
<div class="container">
<div class="row">
<div class="col s12 center">
<h3>
<i class="mdi-content-send brown-text"></i>
</h3>
<h3 class="header red-text text-darken-5">Made for Behavior Driven Development (BDD)</h3>
<p class="center-align light">Because working with user behaviors is <b>not a matter of technique</b>, but of human thinking.
Tastee have been made to allow anyone to <b>write its own automated test scenarios in a very simple manner</b>.</p>
<p class="center-align light">In fact, most of the tools made for BDD allow you to write your own scenarios in your own design specific language (DSL)
, but at the end, you still need developer's skills to automate them and being able to run them. We believe Tastee will help you to go deeper in this
methodology by taking care of this technical part </p>
<p class="center-align light">Indeed, Tastee starts with a <b>"Browser Specific Language"</b> since, as a website user, you are first a browser user.
In your browser, your actions are limited to very simple instructions like "Going to a website', 'Clicking on buttons or links", "Checking some contents", ...<br/>
Then, by combining these simple instructions, you creates more complex ones like "Connect using a user and password" and so on ... </p>
</div>
</div>
<!-- example Section -->
<div class="row center">
<div class="col s12 m2">
<div class="icon-block">
<img src="img/browser.svg" alt="go to" width="100%">
<p class="center-align light">Go to the Login Page</p>
</div>
</div>
<div class="col s12 m1" style="vertical-align: middle">
<div class="icon-block">
<h3 class="center-align">+</h3>
</div>
</div>
<div class="col s12 m2">
<div class="icon-block">
<img src="img/field.svg" alt="fill fields" width="100%">
<p class="center-align light">Fill the fields</p>
</div>
</div>
<div class="col s12 m1">
<div class="icon-block">
<h3 class="center-align">+</h3>
</div>
</div>
<div class="col s12 m2">
<div class="icon-block">
<img src="img/button.svg" alt="click on" width="100%">
<p class="center-align light">Click on button</p>
</div>
</div>
<div class="col s12 m1">
<div class="icon-block">
<h3 class="center-align">=</h3>
</div>
</div>
<div class="col s12 m2">
<div class="icon-block">
<img src="img/login.svg" alt="Conntect to" width="100%">
<p class="center-align light">Connect using $user and $password</p>
</div>
</div>
</div>
<div class="row">
<div class="col s12 center">
<p class="center-align">At the end, by combining all these instructions, you'll be able to open an <b>infinite world of testing behavior</b> that can be enhanced by the community.</p>
</div>
</div>
</div>
</div>
<div class="parallax-container">
<div class="parallax">
<img src="img/behaviors.png" alt="Behave">
</div>
</div>
<div class="section white">
<!-- Icon Section -->
<div class="row container">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center brown-text ">
<i class="large material-icons">settings_power</i>
</h2>
<h5 class="center red-text text-darken-5">Easy to use</h5>
<p class="center-align light">To begin to describe the behavior of your applications, simply <a href="#gettingstarted">download</a> the editor and start using it !
directly!
</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center brown-text">
<i class="large material-icons">zoom_in</i>
</h2>
<h5 class="center red-text text-darken-5 ">User Experience</h5>
<p class="center-align light">Don't you wait for developers to describe the behavior of your application? With Tastee, you are self-employed
to write and execute your own behavioral tests.</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center brown-text">
<i class="large material-icons">supervisor_account</i>
</h2>
<h5 class="center red-text text-darken-5">Open Source</h5>
<p class="center-align light">
The editor and its engine are open sourced.<br/>
You can help the community by completing and publishing "Browser Specific Language" in your own language.<br/>
Developers can provide help on languages and tools
</p>
</div>
</div>
</div>
</div>
<div id="gettingstarted" class="parallax-container">
<div class="parallax">
<img src="img/humor.jpg" alt="humor">
</div>
</div>
<div class="section">
<div class="container">
<div class="row">
<div class="col s12 center">
<h3>
<i class="mdi-content-send brown-text"></i>
</h3>
<h2 class="header red-text text-darken-5">How to use Tastee ?</h2>
<p>It's very simple, just download the executable according to your operating system and launch:</p>
<ul class="collection">
<li class="collection-item avatar">
<img src="img/windows.png" alt="windows" class="circle">
<span class="title">Windows</span>
<p>
<a href="https://github.com/tastee/tastee-ui/releases">Click here to download</a>
</p>
</li>
<li class="collection-item avatar">
<img src="img/linux.png" alt="linux" class="circle">
<span class="title">Linux</span>
<p>
<a href="https://github.com/tastee/tastee-ui/releases">Click here to download</a>
</p>
</li>
<li class="collection-item avatar">
<img src="img/osx.png" alt="OSx" class="circle">
<span class="title">OS X</span>
<p>
<a href="https://github.com/tastee/tastee-ui/releases">Click here to download</a>
</p>
</li>
</ul>
<p>The documentation is described
<a href="https://tastee.github.io/docs/index.html">here</a>.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Tr8ILpk7VDY" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<div id="features" class="parallax-container">
<div class="parallax">
<img src="img/feature.jpg" alt="humor">
</div>
</div>
<div class="section">
<div class="container">
<div class="row">
<div class="col s12 center">
<p class="center-align light">Tastee comes with a <b>Text Editor</b> that allows you to write HTML files that can be executed on different browsers like Chrome and / or Firefox.</p>
<p class="center-align light">You have the possibility to customize these HTML files that we have called Tastee Files. These Tastee files
are then integrated into a <b>test report</b> once their executions are completed, giving you the possibility to include logos, schemas and any other HTML features.</p>
<p class="center-align light">To improve readability of Tastee Files, you can <b>create your own Instructions</b>, based on the other ones, extract variables that might not be readable enough, and reuse them in any of yours.</p>
<p>A good starter, would be to use the <a href="https://github.com/tastee/tastee-examples">"common" instructions</a> shared by the community : </p>
</div>
</div>
</div>
</div>
<div id="gettingstarted" class="parallax-container">
<div class="parallax">
<img src="img/food.jpg" alt="food">
</div>
</div>
<div class="section">
<div class="container">
<div class="row">
<div class="col s12 center">
<h2 class="header red-text text-darken-5">Who's eating Tastee?</h2>
<a href="https://www.norsys.fr/"><img src="img/norsys.png" alt="Norsys" title="Norsys" class="responsive-img"></a>
</div>
</div>
</div>
</div>
<footer class="page-footer #d32f2f red darken-2">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Tastee's Bio</h5>
<p class="grey-text text-lighten-4">We are a team of friends, helped by Norsys, working on this project. We wish both finish once and for all with the frameworks
e-2-e too complicated for our taste and improve quality of software by helping them to be tested easily.</p>
</div>
<div class="col l3 s12">
<h5 class="white-text">Tracking</h5>
<ul>
<li>
<a href="https://www.codacy.com/app/tastee/tastee-core?utm_source=github.com&utm_medium=referral&utm_content=tastee/tastee-core&utm_campaign=Badge_Grade">
<img src="https://api.codacy.com/project/badge/Grade/4bb2ab1ad50e438685ed89f47aac65e8" />
</a>
</li>
<li>
<a href="https://www.codacy.com/app/tastee/tastee-core?utm_source=github.com&utm_medium=referral&utm_content=tastee/tastee-core&utm_campaign=Badge_Coverage">
<img src="https://api.codacy.com/project/badge/Coverage/4bb2ab1ad50e438685ed89f47aac65e8" />
</a>
</li>
<li>
<a href="https://travis-ci.org/tastee/tastee-core">
<img alt="Build Status" src="https://travis-ci.org/tastee/tastee-core.svg?branch=master" style="max-width:100%;">
</a>
</li>
</ul>
</div>
<div class="col l3 s12">
<h5 class="white-text">Connect</h5>
<ul>
<li>
<a class="github-button" href="https://github.com/tastee/tastee-core" data-icon="octicon-star" data-style="mega" data-count-href="/tastee/tastee-core/stargazers"
data-count-api="/repos/tastee/tastee-core#stargazers_count" data-count-aria-label="# stargazers on GitHub"
aria-label="Star tastee/tastee-core on GitHub">Star</a>
</li>
<li>
<a href="https://twitter.com/tastee_is_good" class="twitter-follow-button" data-show-count="false">Follow @tastee_is_good</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</li>
<li>
<a href="https://twitter.com/intent/tweet?screen_name=tastee_is_good" class="twitter-mention-button" data-show-count="false">Tweet to @tastee_is_good</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</li>
<li>
<div class="g-plusone" data-size="medium"></div>
</li>
<li>
<div class="fb-like" data-href="https://www.facebook.com/Tastee-1741992322735091/" data-layout="button_count" data-action="like"
data-size="small" data-show-faces="false" data-share="false"></div>
</li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
Licenced under
<a class="brown-text text-lighten-3" href="https://github.com/tastee/tastee-core/blob/master/LICENSE.md">MIT License</a>
</div>
</div>
</footer>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.parallax').parallax();
$(".button-collapse").sideNav();
});
</script>
</body>
</html>