-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgwen.conf
241 lines (240 loc) · 4.74 KB
/
gwen.conf
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
#
# Common Gwen Settings
# --------------------
#
# Configure all your common Gwen settings here.
#
# Configure all your browser level settings in the browser folder.
# Configure all your environment level settings in the envs folder.
#
#
# For more detailed information about each setting see:
# - https://gweninterpreter.org/docs/settings/reference
#
# Format: HOCON (Human-Optimized Config Object Notation superset of JSON)
# - See: https://github.com/lightbend/config/blob/master/HOCON.md
#
gwen {
baseDir = "gwen"
outDir = "${gwen.baseDir}/output"
target {
browser = "chrome" # chrome|firefox|safari|edge|ie
env = "test" # local|dev|test|staging|prod|..
}
assertion {
mode = "hard" # hard|soft|sustained
}
associative {
meta = true
}
auto {
bind {
tableData {
outline {
examples = true
}
}
}
discover {
data {
csv = false
json = false
}
meta = true
}
trim {
data {
csv = false
json = false
}
}
}
behavior {
rules = "strict" # strict|lenient
}
cli { # CLI options
options { # See: https://gweninterpreter.org/docs/settings/reference#cli-settings
batch = false
format = [
"html"
# "junit",
# "json",
# "rp",
# "none"
]
dryRun = false
features = [
]
inputData = ""
meta = [
"${gwen.baseDir}/meta"
]
parallel = true
report = ${gwen.outDir}/reports
tags = [
# "@tag1",
# "~@tag2",
# ..
]
verbose = false
}
}
console {
log {
colors = true
depth = 1 # "infinity" to log all depths
stepDefs = true
}
repl {
autoSuggestions = true
tabCompletion = true
}
}
dryRun {
limit {
tableData {
outline {
examples {
records = "infinity" # "infinity" to include all records in dry run
}
}
}
}
}
error {
messages {
inline {
locators = false
}
}
}
feature {
dialect = "en"
failfast {
enabled = true
exit = false
}
mode = "declarative" # declarative|imperative
}
mask {
char = "*"
}
output {
dir = "${gwen.baseDir}/output"
}
parallel {
maxThreads = auto # auto|number (auto = all available cores)
}
rampup {
interval {
seconds = 0 # 0 = non staggerred parallel execution
}
}
report {
overwrite = false
slideshow {
create = false
framespersecond = 4
}
stepDef {
indent {
pixels = 20
}
}
suppress {
meta = true
}
}
rp {
debug = false
heartbeat {
enabled = true
timeoutSecs = 3
}
send {
annotations = false
breadcrumbs = false
failed {
envTrace = "none" # inlined|attached|none
errorBlocks = "none" # all|leaf|none
errorTrace = "none" # inlined|attached|none
hierarchy = "inlined" # inlined|attached|none
stepDefs = "inlined" # inlined|nested|none
}
markdownBlocks = true
meta = false
stepDefs = "none" # inlined|nested|none
tags = true
}
testCaseId {
keys = "nodePath+params" # nodePath+params|sourceRef+params|nodePath|sourceRef|auto
}
}
state {
level = "feature" # feature|scenario
}
video {
dir = ${gwen.outDir}/.video
timeoutSecs = 10
}
web {
accept {
untrusted {
certs = true
}
}
assertions {
delayMillisecs = 200
maxStrikes = auto # number|infinity|auto (infinity = unlimited attempts)
}
authorize {
plugins = false
}
browser {
headless = false
# size = "" # <width>x<height>, eg: 1200x800
}
capture {
screenshots {
enabled = false
duplicates = false
highlighting = false
}
}
driver {
manager = "SeleniumManager" # SeleniumManager|WebDriverManager
}
highlight {
style = "background: yellow; border: 2px solid gold;"
}
implicit {
element {
focus = true
moveTo = false
}
js {
locators = false
}
}
locator {
wait {
seconds = ${gwen.web.wait.seconds}
}
},
maximize = false
sendKeys {
clearFirst = false
clickFirst = false
}
suppress {
images = false
}
throttle {
msecs = 100
}
# useragent = ""
wait {
seconds = 10
}
}
}