-
Notifications
You must be signed in to change notification settings - Fork 131
/
addons.html
112 lines (109 loc) · 4.47 KB
/
addons.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
---
layout: bootstrap
title: Addons
---
<div class="container container--addons">
<h1>Addons</h1>
<p class="alert alert-info">See built-in <a href="/extensions">official extensions</a> of Codeception</p>
<div class="row">
<div class="col-md-6">
<div class="page">
<h2>
<a href="https://chrome.google.com/webstore/detail/codeception-testtools/jhaegbojocomemkcnmnpmoobbmnkijik">Codeception
Test Tools <small>Chrome Extension</small></a></h2>
<img
src="https://lh3.googleusercontent.com/ha92txqVyDNbSxT3fzt7Qo7jEfzyg7BfRnYFOBzak44v2QJ292dKVxIfxc_O-gfmp_dVd94-dg=s640-h400-e365-rw"
alt="">
<p>
Google Chrome extension to generate Codeception acceptance tests while using your app.
<br>
<a href="https://github.com/mpociot/codeception-testtools">GitHub</a>
</p>
</div>
</div>
<div class="col-md-6">
<div class="page">
<h2><a href="https://github.com/jayhealey/Webception">WebCeption <small>Web Runner</small> </a></h2>
<img
src="https://camo.githubusercontent.com/e39e74ae363de8c250837ed04c54f71935f96194/687474703a2f2f692e696d6775722e636f6d2f6e53734d4649532e676966"
alt="">
<p>
Webception is a deployable web-application that allows you to run all your Codeception tests in the
browser.
You can access multiple test suites and decide which tests to include in a run. It allows you start,
stop and
restart the process whilst watching the test results in the Console.
</p>
</div>
</div>
</div>
<div class="row">
<h2 class="text-center">Community Modules</h2>
</div>
<div class="alert alert-warning">To publish your own module <a
href="https://github.com/Codeception/codeception.github.com/edit/master/_data/modules.yml">add it to the
list</a> on
GitHub and send a Pull Request.
</div>
<div class="row">
<div class="grid" data-columns>
{% for module in site.data.modules %}
<div class="card module" {% if module.color %}
style="background: {{module.color}};"
{% endif %}>
<a href="{{module.link}}" target="_blank">
{% if module.image %}
<span class="card-image" style="background-image: url({{ module.image }}); ">
<span class="card-title">
{{module.name}}
</span>
</span>
{% else %}
<span class="card-title">
{{module.name}}
</span>
{% endif %}
<div class="card-content">
{{module.description | markdownify }}
</div>
</a>
</div>
{% endfor %}
</div>
</div>
<div class="row">
<h2 class="text-center">Community Extensions</h2>
</div>
<div class="alert alert-warning">To publish your own extension <a
href="https://github.com/Codeception/codeception.github.com/edit/master/_data/extensions.yml">add it to the
list</a>
on GitHub and send a Pull Request.
</div>
<div class="row">
<div class="grid" data-columns>
{% for extension in site.data.extensions %}
<div class="card extension" {% if extension.color %}
style="background: {{extension.color}};"
{% endif %}>
<a href="{{extension.link}}" target="_blank" aria-label="{{extension.name}}"
>
{% if extension.image %}
<span class="card-image" style="background-image: url({{ extension.image }}); ">
<span class="card-title">
{{extension.name}}
</span>
</span>
{% else %}
<span class="card-title">
{{extension.name}}
</span>
{% endif %}
<div class="card-content">
{{extension.description | markdownify }}
</div>
</a></div>
{% endfor %}
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/salvattore/1.0.9/salvattore.min.js"></script>