forked from Codeception/codeception.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addons.html
150 lines (97 loc) · 3.67 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
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
---
layout: bootstrap
title: Addons
---
<div class="container">
<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="" style="background-size: contain">
<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>
<!-- Card Projects -->
{% 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">
<p>
{{module.description | markdownify }}
</p>
</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>
<!-- Card Projects -->
{% for extension in site.data.extensions %}
<div class="card extension" {% if extension.color %}
style="background: {{extension.color}};"
{% endif %}>
<a href="{{extension.link}}" target="_blank"
>
{% 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>