artes 1.2.14 → 1.2.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/README.md +533 -533
  2. package/cucumber.config.js +171 -171
  3. package/docs/functionDefinitions.md +2401 -2401
  4. package/docs/stepDefinitions.md +352 -352
  5. package/executer.js +161 -161
  6. package/index.js +48 -48
  7. package/package.json +51 -54
  8. package/src/helper/contextManager/browserManager.js +63 -63
  9. package/src/helper/contextManager/requestManager.js +23 -23
  10. package/src/helper/controller/elementController.js +182 -182
  11. package/src/helper/controller/pomCollector.js +25 -25
  12. package/src/helper/executers/cleaner.js +19 -19
  13. package/src/helper/executers/exporter.js +15 -15
  14. package/src/helper/executers/helper.js +95 -95
  15. package/src/helper/executers/projectCreator.js +198 -198
  16. package/src/helper/executers/reportGenerator.js +58 -57
  17. package/src/helper/executers/testRunner.js +30 -30
  18. package/src/helper/executers/versionChecker.js +31 -31
  19. package/src/helper/imports/commons.js +56 -56
  20. package/src/helper/stepFunctions/APIActions.js +362 -362
  21. package/src/helper/stepFunctions/assertions.js +523 -523
  22. package/src/helper/stepFunctions/browserActions.js +22 -22
  23. package/src/helper/stepFunctions/elementInteractions.js +38 -38
  24. package/src/helper/stepFunctions/exporter.js +19 -19
  25. package/src/helper/stepFunctions/frameActions.js +50 -50
  26. package/src/helper/stepFunctions/keyboardActions.js +41 -41
  27. package/src/helper/stepFunctions/mouseActions.js +145 -145
  28. package/src/helper/stepFunctions/pageActions.js +27 -27
  29. package/src/hooks/context.js +15 -15
  30. package/src/hooks/hooks.js +257 -257
  31. package/src/stepDefinitions/API.steps.js +299 -299
  32. package/src/stepDefinitions/assertions.steps.js +861 -861
  33. package/src/stepDefinitions/browser.steps.js +7 -7
  34. package/src/stepDefinitions/frameActions.steps.js +76 -76
  35. package/src/stepDefinitions/keyboardActions.steps.js +226 -226
  36. package/src/stepDefinitions/mouseActions.steps.js +275 -275
  37. package/src/stepDefinitions/page.steps.js +71 -71
  38. package/src/stepDefinitions/random.steps.js +158 -158
@@ -1,352 +1,352 @@
1
- # Step Definitions
2
-
3
- ## Table of Contents
4
-
5
- - [Mouse Actions](#mouse-actions)
6
- - [Keyboard Actions](#keyboard-actions)
7
- - [Page Actions](#page-actions)
8
- - [Frame Actions](#frame-actions)
9
- - [API Actions](#api-actions)
10
- - [Variable Management](#variable-management)
11
- - [Debugging / Console Output](#debugging--console-output)
12
- - [Generic HTTP Request](#generic-http-request)
13
- - [Assertions](#assertions)
14
-
15
- ---
16
-
17
- # Mouse Actions
18
-
19
- ## Click Actions
20
-
21
- - User clicks `{string}`
22
- - User clicks `{string}` with force
23
- - User clicks `{string}` at `{int}, {int}` position
24
- - User clicks `{string}` at `{int}, {int}` position with force
25
- - User clicks at `{int}, {int}` coordinates
26
- - User clicks at `{int}, {int}` coordinates with click count `{int}` and delay `{int}`
27
- - User clicks at `{int}, {int}` coordinates with force
28
- - User clicks `{string}` with button `{string}`
29
- - User clicks `{string}` with button `{string}` and force
30
-
31
- ## Double Click Actions
32
-
33
- - User double clicks `{string}`
34
- - User double clicks `{string}` with force
35
- - User double clicks `{string}` at `{int}, {int}` position
36
- - User double clicks `{string}` at `{int}, {int}` position with force
37
- - User double clicks at `{int}, {int}` coordinates
38
- - User double clicks at `{int}, {int}` coordinates with click count `{int}` and delay `{int}`
39
- - User double clicks at `{int}, {int}` coordinates with force
40
-
41
- ## Mouse Movement Actions
42
-
43
- - User moves to `{int}, {int}` coordinates
44
- - User scrolls the mouse wheel at `{int}, {int}` coordinates
45
-
46
- ## Hover Actions
47
-
48
- - User hovers over `{string}`
49
- - User hovers over `{string}` with force
50
- - User hovers over `{string}` at `{int}, {int}` position
51
- - User hovers over `{string}` at `{int}, {int}` position with force
52
-
53
- ## Focus Actions
54
-
55
- - User focuses on `{string}`
56
- - User focuses on `{string}` with force
57
- - User focuses on `{string}` at `{int}, {int}` position
58
- - User focuses on `{string}` at `{int}, {int}` position with force
59
-
60
- ## Drag Actions
61
-
62
- - User drags `{string}` to `{string}`
63
- - User drags `{string}` to `{int}, {int}` position
64
-
65
- ## Selection Actions
66
-
67
- - User selects by value `{string}` from `{string}`
68
- - User selects by text `{string}` from `{string}`
69
-
70
- ## Checkbox Actions
71
-
72
- - User checks `{string}`
73
- - User unchecks `{string}`
74
-
75
- ## Scroll Actions
76
-
77
- - User scrolls into view for `{string}`
78
-
79
- ---
80
-
81
- # Keyboard Actions
82
-
83
- ## Press Actions
84
-
85
- - User presses `{string}` on `{string}`
86
- - User presses keys `{string}` sequentially on `{string}`
87
- - User presses keys `{string}` sequentially with delay `{int}` on `{string}`
88
-
89
- ## Input Actions
90
-
91
- - User types `{string}` in `{string}`
92
- - User types `{string}` with delay `{int}`
93
- - User inserts text `{string}`
94
- - User clears `{string}`
95
-
96
- ## Selection Actions
97
-
98
- - User selects text in `{string}`
99
-
100
- ## File Input Actions
101
-
102
- - User sets input files `{string}` for `{string}`
103
-
104
- ## Key State Actions
105
-
106
- - User holds down `{string}`
107
- - User releases `{string}`
108
- - User presses `{string}`
109
-
110
- ---
111
-
112
- # Page Actions
113
-
114
- ## Navigation Actions
115
-
116
- - User navigates to `{string}` page
117
- - User navigates previous page
118
- - User navigates next page
119
-
120
- ## URL Actions
121
-
122
- - User gets URL of page
123
-
124
- ## Wait Actions
125
-
126
- - User waits `{int}` seconds
127
- - User waits `{int}` milliseconds
128
- - User waits `{int}` minutes
129
-
130
- ---
131
-
132
- # Frame Actions
133
-
134
- ## Screenshot Actions
135
-
136
- - User takes a screenshot of `{string}`
137
-
138
- ## Content and Locator Actions
139
-
140
- - User gets the content frame of `{string}`
141
- - User gets the frame locator of `{string}`
142
-
143
- ## Element Retrieval Actions
144
-
145
- - User gets the `{int} th` element of `{string}`
146
- - User gets the first element of `{string}`
147
- - User gets the last element of `{string}`
148
- - User filters elements of `{string}` with filter `{string}`
149
-
150
- ## Counting Actions
151
-
152
- - User counts the elements of `{string}`
153
-
154
- ## Accessibility-Based Retrieval Actions
155
-
156
- - User gets the element with alt text `{string}`
157
- - User gets the element with label `{string}`
158
- - User gets the element with placeholder `{string}`
159
- - User gets the element with role `{string}`
160
- - User gets the element with testId `{string}`
161
- - User gets the element with testId `{string}` (assuming you meant testId twice)
162
-
163
- ---
164
-
165
- # API Actions
166
-
167
- ## GET Requests
168
-
169
- - User sends GET request to `{string}`
170
- - User sends GET request to `{string}` with payload:
171
- - User sends GET request to `{string}` and saves `{string}` variables
172
- - User sends GET request to `{string}` with payload and saves `{string}` variables
173
-
174
- ## HEAD Requests
175
-
176
- - User sends HEAD request to `{string}`
177
-
178
- ## POST Requests
179
-
180
- - User sends POST request to `{string}` with payload:
181
- - User sends POST request to `{string}` with payload and saves `{string}` variables
182
- - User sends multipart POST request to `{string}` with payload:
183
- - User sends multipart POST request to `{string}` with payload and `{string}` variables
184
-
185
- ## PUT Requests
186
-
187
- - User sends PUT request to `{string}` with payload:
188
- - User sends PUT request to `{string}` with payload and saves `{string}` variables
189
- - User sends multipart PUT request to `{string}` with payload:
190
- - User sends multipart PUT request to `{string}` with payload and saves `{string}` variables
191
-
192
- ## PATCH Requests
193
-
194
- - User sends PATCH request to `{string}` with payload:
195
- - User sends PATCH request to `{string}` with payload and saves `{string}` variables
196
- - User sends multipart PATCH request to `{string}` with payload:
197
- - User sends multipart PATCH request to `{string}` with payload and saves `{string}` variables
198
-
199
- ## DELETE Requests
200
-
201
- - User sends DELETE request to `{string}`
202
- - User sends DELETE request to `{string}` and saves `{string}` variables
203
- - User sends DELETE request to `{string}` with payload:
204
- - User sends DELETE request to `{string}` with payload and saves `{string}` variables
205
-
206
- ---
207
-
208
- # Variable Management
209
-
210
- - User saves `{string}` variable from response as `{string}`
211
- - User saves `{string}` variable as `{string}`
212
-
213
- ---
214
-
215
- # Debugging / Console Output
216
-
217
- - User wants to see saved variables
218
- - User wants to see request body
219
- - User wants to see response body
220
-
221
- ---
222
-
223
- # Generic HTTP Request
224
-
225
- - User sends `{string}` request to `{string}`
226
-
227
- ---
228
-
229
- # Random Data Generation
230
-
231
- - User sets random words as `{string}` variable
232
- - User sets random number from `{int}` to `{int}` as `{string}` variable
233
-
234
- # API Data Extraction
235
-
236
- - User sends GET request to `{string}` and save `{string}` variable as a `{string}` randomly
237
-
238
- ---
239
-
240
- ## Assertions
241
-
242
- - User expects `{string}` should be attached
243
- - User expects `{string}` should be checked
244
- - User expects `{string}` should be disabled
245
- - User expects `{string}` should be editable
246
- - User expects `{string}` should be empty
247
- - User expects `{string}` should be enabled
248
- - User expects `{string}` should be focused
249
- - User expects `{string}` should be hidden
250
- - User expects `{string}` should be on the screen
251
- - User expects `{string}` should be visible
252
- - User expects `{string}` should have `{string}` text
253
- - User expects `{string}` should have `{string}` description
254
- - User expects `{string}` should have `{string}` name
255
- - User expects `{string}` should have `{string}` attribute with `{string}` value
256
- - User expects `{string}` should have `{string}` class
257
- - User expects `{string}` should have `{int}` count
258
- - User expects `{string}` should have `{string}` CSS property with `{string}` value
259
- - User expects `{string}` should have `{string}` id
260
- - User expects `{string}` should have `{string}` JavaScript property with `{string}` value
261
- - User expects `{string}` should have `{string}` role
262
- - User expects `{string}` should have a screenshot
263
- - User expects `{string}` should match `{string}` text
264
- - User expects `{string}` should have `{string}` value
265
- - User expects `{string}` should have `{string}` values
266
- - User expects `{string}` should not be attached
267
- - User expects `{string}` should not be checked
268
- - User expects `{string}` should not be disabled
269
- - User expects `{string}` should not be editable
270
- - User expects `{string}` should not be empty
271
- - User expects `{string}` should not be enabled
272
- - User expects `{string}` should not be focused
273
- - User expects `{string}` should not be hidden
274
- - User expects `{string}` should not be on screen
275
- - User expects `{string}` should not be visible
276
- - User expects `{string}` should not have `{string}` text
277
- - User expects `{string}` should not have `{string}` description
278
- - User expects `{string}` should not have `{string}` name
279
- - User expects `{string}` should not have `{string}` attribute with `{string}` value
280
- - User expects `{string}` should not have `{string}` class
281
- - User expects count of `{string}` should not be `{int}`
282
- - User expects `{string}` should not have `{string}` CSS property with `{string}` value
283
- - User expects `{string}` should not have `{string}` id
284
- - User expects `{string}` should not have `{string}` JavaScript property with `{string}` value
285
- - User expects `{string}` should not have `{string}` role
286
- - User expects `{string}` should not match `{string}` text
287
- - User expects `{string}` should not have `{string}` value
288
- - User expects `{string}` should not have `{string}` values
289
- - User expects the page should not have a screenshot
290
- - User expects the page should not have `{string}` title
291
- - User expects the page url should not be `{string}`
292
- - User is not on `{string}` page
293
- - The response should not be OK
294
- - User expects `{string}` should be `{string}` text
295
- - User expects `{string}` should be close to `{float}` with precision `{int}`
296
- - User expects `{string}` should be defined
297
- - User expects `{string}` should be falsy
298
- - User expects `{string}` should be greater than `{float}`
299
- - User expects `{string}` should be greater than or equal to `{float}`
300
- - User expects `{string}` should be an instance of `{string}`
301
- - User expects `{string}` should be less than `{float}`
302
- - User expects `{string}` should be less than or equal to `{float}`
303
- - User expects `{string}` should be NaN
304
- - User expects `{string}` should be null
305
- - User expects `{string}` should be truthy
306
- - User expects `{string}` should be undefined
307
- - User expects `{string}` should have `{string}` substring
308
- - User expects `{string}` should contain equal `{string}`
309
- - User expects `{string}` should equal `{int}`
310
- - User expects length of `{string}` should be `{int}`
311
- - User expects `{string}` should have `{string}` property
312
- - User expects `{string}` should match `{string}` regex
313
- - User expects `{string}` should match `{string}` object
314
- - User expects `{string}` should strictly equal `{string}`
315
- - The function should throw
316
- - User expects `{string}` should be any instance of `{string}`
317
- - User expects `{string}` may be anything
318
- - User expects `{string}` should contain `{string}` array elements
319
- - User expects `{string}` should be close to `{float}` with precision `{int}`
320
- - User expects `{string}` should contain `{string}` object properties
321
- - User expects `{string}` should have `{string}` substring
322
- - User expects `{string}` should match `{string}` regex
323
- - User expects `{string}` should not have `{string}` text
324
- - User expects `{string}` should not be close to `{float}` with precision `{int}`
325
- - User expects `{string}` should not be defined
326
- - User expects `{string}` should not be falsy
327
- - User expects `{string}` should not be greater than `{float}`
328
- - User expects `{string}` should not be greater than or equal to `{float}`
329
- - User expects `{string}` should not be instance of `{string}`
330
- - User expects `{string}` should not be less than `{float}`
331
- - User expects `{string}` should not be less than or equal to `{float}`
332
- - User expects `{string}` should not be NaN
333
- - User expects `{string}` should not be null
334
- - User expects `{string}` should not be truthy
335
- - User expects `{string}` should not be undefined
336
- - User expects `{string}` should not have `{string}` substring
337
- - User expects `{string}` should not contain equal `{string}`
338
- - User expects `{string}` should not equal `{string}`
339
- - User expects length of `{string}` should not be `{int}`
340
- - User expects `{string}` should not have `{string}` property
341
- - User expects `{string}` should not match `{string}` regex
342
- - User expects `{string}` should not match `{string}` object
343
- - The function should not throw
344
- - User expects `{string}` should not be any instance of `{string}`
345
- - User expects `{string}` may not be anything
346
- - User expects `{string}` should not contain `{string}` array elements
347
- - User expects `{string}` should not be close to `{float}` with precision `{int}`
348
- - User expects `{string}` should not contain `{string}` object properties
349
- - User expects `{string}` should not contain `{string}` substring
350
- - User expects `{string}` should not match `{string}` regex
351
- - User expects that response should have `{int}` status code
352
- - User expects that response body should match `{string}` schema
1
+ # Step Definitions
2
+
3
+ ## Table of Contents
4
+
5
+ - [Mouse Actions](#mouse-actions)
6
+ - [Keyboard Actions](#keyboard-actions)
7
+ - [Page Actions](#page-actions)
8
+ - [Frame Actions](#frame-actions)
9
+ - [API Actions](#api-actions)
10
+ - [Variable Management](#variable-management)
11
+ - [Debugging / Console Output](#debugging--console-output)
12
+ - [Generic HTTP Request](#generic-http-request)
13
+ - [Assertions](#assertions)
14
+
15
+ ---
16
+
17
+ # Mouse Actions
18
+
19
+ ## Click Actions
20
+
21
+ - User clicks `{string}`
22
+ - User clicks `{string}` with force
23
+ - User clicks `{string}` at `{int}, {int}` position
24
+ - User clicks `{string}` at `{int}, {int}` position with force
25
+ - User clicks at `{int}, {int}` coordinates
26
+ - User clicks at `{int}, {int}` coordinates with click count `{int}` and delay `{int}`
27
+ - User clicks at `{int}, {int}` coordinates with force
28
+ - User clicks `{string}` with button `{string}`
29
+ - User clicks `{string}` with button `{string}` and force
30
+
31
+ ## Double Click Actions
32
+
33
+ - User double clicks `{string}`
34
+ - User double clicks `{string}` with force
35
+ - User double clicks `{string}` at `{int}, {int}` position
36
+ - User double clicks `{string}` at `{int}, {int}` position with force
37
+ - User double clicks at `{int}, {int}` coordinates
38
+ - User double clicks at `{int}, {int}` coordinates with click count `{int}` and delay `{int}`
39
+ - User double clicks at `{int}, {int}` coordinates with force
40
+
41
+ ## Mouse Movement Actions
42
+
43
+ - User moves to `{int}, {int}` coordinates
44
+ - User scrolls the mouse wheel at `{int}, {int}` coordinates
45
+
46
+ ## Hover Actions
47
+
48
+ - User hovers over `{string}`
49
+ - User hovers over `{string}` with force
50
+ - User hovers over `{string}` at `{int}, {int}` position
51
+ - User hovers over `{string}` at `{int}, {int}` position with force
52
+
53
+ ## Focus Actions
54
+
55
+ - User focuses on `{string}`
56
+ - User focuses on `{string}` with force
57
+ - User focuses on `{string}` at `{int}, {int}` position
58
+ - User focuses on `{string}` at `{int}, {int}` position with force
59
+
60
+ ## Drag Actions
61
+
62
+ - User drags `{string}` to `{string}`
63
+ - User drags `{string}` to `{int}, {int}` position
64
+
65
+ ## Selection Actions
66
+
67
+ - User selects by value `{string}` from `{string}`
68
+ - User selects by text `{string}` from `{string}`
69
+
70
+ ## Checkbox Actions
71
+
72
+ - User checks `{string}`
73
+ - User unchecks `{string}`
74
+
75
+ ## Scroll Actions
76
+
77
+ - User scrolls into view for `{string}`
78
+
79
+ ---
80
+
81
+ # Keyboard Actions
82
+
83
+ ## Press Actions
84
+
85
+ - User presses `{string}` on `{string}`
86
+ - User presses keys `{string}` sequentially on `{string}`
87
+ - User presses keys `{string}` sequentially with delay `{int}` on `{string}`
88
+
89
+ ## Input Actions
90
+
91
+ - User types `{string}` in `{string}`
92
+ - User types `{string}` with delay `{int}`
93
+ - User inserts text `{string}`
94
+ - User clears `{string}`
95
+
96
+ ## Selection Actions
97
+
98
+ - User selects text in `{string}`
99
+
100
+ ## File Input Actions
101
+
102
+ - User sets input files `{string}` for `{string}`
103
+
104
+ ## Key State Actions
105
+
106
+ - User holds down `{string}`
107
+ - User releases `{string}`
108
+ - User presses `{string}`
109
+
110
+ ---
111
+
112
+ # Page Actions
113
+
114
+ ## Navigation Actions
115
+
116
+ - User navigates to `{string}` page
117
+ - User navigates previous page
118
+ - User navigates next page
119
+
120
+ ## URL Actions
121
+
122
+ - User gets URL of page
123
+
124
+ ## Wait Actions
125
+
126
+ - User waits `{int}` seconds
127
+ - User waits `{int}` milliseconds
128
+ - User waits `{int}` minutes
129
+
130
+ ---
131
+
132
+ # Frame Actions
133
+
134
+ ## Screenshot Actions
135
+
136
+ - User takes a screenshot of `{string}`
137
+
138
+ ## Content and Locator Actions
139
+
140
+ - User gets the content frame of `{string}`
141
+ - User gets the frame locator of `{string}`
142
+
143
+ ## Element Retrieval Actions
144
+
145
+ - User gets the `{int} th` element of `{string}`
146
+ - User gets the first element of `{string}`
147
+ - User gets the last element of `{string}`
148
+ - User filters elements of `{string}` with filter `{string}`
149
+
150
+ ## Counting Actions
151
+
152
+ - User counts the elements of `{string}`
153
+
154
+ ## Accessibility-Based Retrieval Actions
155
+
156
+ - User gets the element with alt text `{string}`
157
+ - User gets the element with label `{string}`
158
+ - User gets the element with placeholder `{string}`
159
+ - User gets the element with role `{string}`
160
+ - User gets the element with testId `{string}`
161
+ - User gets the element with testId `{string}` (assuming you meant testId twice)
162
+
163
+ ---
164
+
165
+ # API Actions
166
+
167
+ ## GET Requests
168
+
169
+ - User sends GET request to `{string}`
170
+ - User sends GET request to `{string}` with payload:
171
+ - User sends GET request to `{string}` and saves `{string}` variables
172
+ - User sends GET request to `{string}` with payload and saves `{string}` variables
173
+
174
+ ## HEAD Requests
175
+
176
+ - User sends HEAD request to `{string}`
177
+
178
+ ## POST Requests
179
+
180
+ - User sends POST request to `{string}` with payload:
181
+ - User sends POST request to `{string}` with payload and saves `{string}` variables
182
+ - User sends multipart POST request to `{string}` with payload:
183
+ - User sends multipart POST request to `{string}` with payload and `{string}` variables
184
+
185
+ ## PUT Requests
186
+
187
+ - User sends PUT request to `{string}` with payload:
188
+ - User sends PUT request to `{string}` with payload and saves `{string}` variables
189
+ - User sends multipart PUT request to `{string}` with payload:
190
+ - User sends multipart PUT request to `{string}` with payload and saves `{string}` variables
191
+
192
+ ## PATCH Requests
193
+
194
+ - User sends PATCH request to `{string}` with payload:
195
+ - User sends PATCH request to `{string}` with payload and saves `{string}` variables
196
+ - User sends multipart PATCH request to `{string}` with payload:
197
+ - User sends multipart PATCH request to `{string}` with payload and saves `{string}` variables
198
+
199
+ ## DELETE Requests
200
+
201
+ - User sends DELETE request to `{string}`
202
+ - User sends DELETE request to `{string}` and saves `{string}` variables
203
+ - User sends DELETE request to `{string}` with payload:
204
+ - User sends DELETE request to `{string}` with payload and saves `{string}` variables
205
+
206
+ ---
207
+
208
+ # Variable Management
209
+
210
+ - User saves `{string}` variable from response as `{string}`
211
+ - User saves `{string}` variable as `{string}`
212
+
213
+ ---
214
+
215
+ # Debugging / Console Output
216
+
217
+ - User wants to see saved variables
218
+ - User wants to see request body
219
+ - User wants to see response body
220
+
221
+ ---
222
+
223
+ # Generic HTTP Request
224
+
225
+ - User sends `{string}` request to `{string}`
226
+
227
+ ---
228
+
229
+ # Random Data Generation
230
+
231
+ - User sets random words as `{string}` variable
232
+ - User sets random number from `{int}` to `{int}` as `{string}` variable
233
+
234
+ # API Data Extraction
235
+
236
+ - User sends GET request to `{string}` and save `{string}` variable as a `{string}` randomly
237
+
238
+ ---
239
+
240
+ ## Assertions
241
+
242
+ - User expects `{string}` should be attached
243
+ - User expects `{string}` should be checked
244
+ - User expects `{string}` should be disabled
245
+ - User expects `{string}` should be editable
246
+ - User expects `{string}` should be empty
247
+ - User expects `{string}` should be enabled
248
+ - User expects `{string}` should be focused
249
+ - User expects `{string}` should be hidden
250
+ - User expects `{string}` should be on the screen
251
+ - User expects `{string}` should be visible
252
+ - User expects `{string}` should have `{string}` text
253
+ - User expects `{string}` should have `{string}` description
254
+ - User expects `{string}` should have `{string}` name
255
+ - User expects `{string}` should have `{string}` attribute with `{string}` value
256
+ - User expects `{string}` should have `{string}` class
257
+ - User expects `{string}` should have `{int}` count
258
+ - User expects `{string}` should have `{string}` CSS property with `{string}` value
259
+ - User expects `{string}` should have `{string}` id
260
+ - User expects `{string}` should have `{string}` JavaScript property with `{string}` value
261
+ - User expects `{string}` should have `{string}` role
262
+ - User expects `{string}` should have a screenshot
263
+ - User expects `{string}` should match `{string}` text
264
+ - User expects `{string}` should have `{string}` value
265
+ - User expects `{string}` should have `{string}` values
266
+ - User expects `{string}` should not be attached
267
+ - User expects `{string}` should not be checked
268
+ - User expects `{string}` should not be disabled
269
+ - User expects `{string}` should not be editable
270
+ - User expects `{string}` should not be empty
271
+ - User expects `{string}` should not be enabled
272
+ - User expects `{string}` should not be focused
273
+ - User expects `{string}` should not be hidden
274
+ - User expects `{string}` should not be on screen
275
+ - User expects `{string}` should not be visible
276
+ - User expects `{string}` should not have `{string}` text
277
+ - User expects `{string}` should not have `{string}` description
278
+ - User expects `{string}` should not have `{string}` name
279
+ - User expects `{string}` should not have `{string}` attribute with `{string}` value
280
+ - User expects `{string}` should not have `{string}` class
281
+ - User expects count of `{string}` should not be `{int}`
282
+ - User expects `{string}` should not have `{string}` CSS property with `{string}` value
283
+ - User expects `{string}` should not have `{string}` id
284
+ - User expects `{string}` should not have `{string}` JavaScript property with `{string}` value
285
+ - User expects `{string}` should not have `{string}` role
286
+ - User expects `{string}` should not match `{string}` text
287
+ - User expects `{string}` should not have `{string}` value
288
+ - User expects `{string}` should not have `{string}` values
289
+ - User expects the page should not have a screenshot
290
+ - User expects the page should not have `{string}` title
291
+ - User expects the page url should not be `{string}`
292
+ - User is not on `{string}` page
293
+ - The response should not be OK
294
+ - User expects `{string}` should be `{string}` text
295
+ - User expects `{string}` should be close to `{float}` with precision `{int}`
296
+ - User expects `{string}` should be defined
297
+ - User expects `{string}` should be falsy
298
+ - User expects `{string}` should be greater than `{float}`
299
+ - User expects `{string}` should be greater than or equal to `{float}`
300
+ - User expects `{string}` should be an instance of `{string}`
301
+ - User expects `{string}` should be less than `{float}`
302
+ - User expects `{string}` should be less than or equal to `{float}`
303
+ - User expects `{string}` should be NaN
304
+ - User expects `{string}` should be null
305
+ - User expects `{string}` should be truthy
306
+ - User expects `{string}` should be undefined
307
+ - User expects `{string}` should have `{string}` substring
308
+ - User expects `{string}` should contain equal `{string}`
309
+ - User expects `{string}` should equal `{int}`
310
+ - User expects length of `{string}` should be `{int}`
311
+ - User expects `{string}` should have `{string}` property
312
+ - User expects `{string}` should match `{string}` regex
313
+ - User expects `{string}` should match `{string}` object
314
+ - User expects `{string}` should strictly equal `{string}`
315
+ - The function should throw
316
+ - User expects `{string}` should be any instance of `{string}`
317
+ - User expects `{string}` may be anything
318
+ - User expects `{string}` should contain `{string}` array elements
319
+ - User expects `{string}` should be close to `{float}` with precision `{int}`
320
+ - User expects `{string}` should contain `{string}` object properties
321
+ - User expects `{string}` should have `{string}` substring
322
+ - User expects `{string}` should match `{string}` regex
323
+ - User expects `{string}` should not have `{string}` text
324
+ - User expects `{string}` should not be close to `{float}` with precision `{int}`
325
+ - User expects `{string}` should not be defined
326
+ - User expects `{string}` should not be falsy
327
+ - User expects `{string}` should not be greater than `{float}`
328
+ - User expects `{string}` should not be greater than or equal to `{float}`
329
+ - User expects `{string}` should not be instance of `{string}`
330
+ - User expects `{string}` should not be less than `{float}`
331
+ - User expects `{string}` should not be less than or equal to `{float}`
332
+ - User expects `{string}` should not be NaN
333
+ - User expects `{string}` should not be null
334
+ - User expects `{string}` should not be truthy
335
+ - User expects `{string}` should not be undefined
336
+ - User expects `{string}` should not have `{string}` substring
337
+ - User expects `{string}` should not contain equal `{string}`
338
+ - User expects `{string}` should not equal `{string}`
339
+ - User expects length of `{string}` should not be `{int}`
340
+ - User expects `{string}` should not have `{string}` property
341
+ - User expects `{string}` should not match `{string}` regex
342
+ - User expects `{string}` should not match `{string}` object
343
+ - The function should not throw
344
+ - User expects `{string}` should not be any instance of `{string}`
345
+ - User expects `{string}` may not be anything
346
+ - User expects `{string}` should not contain `{string}` array elements
347
+ - User expects `{string}` should not be close to `{float}` with precision `{int}`
348
+ - User expects `{string}` should not contain `{string}` object properties
349
+ - User expects `{string}` should not contain `{string}` substring
350
+ - User expects `{string}` should not match `{string}` regex
351
+ - User expects that response should have `{int}` status code
352
+ - User expects that response body should match `{string}` schema