artes 1.0.61 → 1.0.62

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 +356 -340
  2. package/cucumber.config.js +98 -98
  3. package/docs/functionDefinitions.md +2343 -2101
  4. package/docs/stepDefinitions.md +352 -269
  5. package/executer.js +59 -59
  6. package/index.js +44 -44
  7. package/package.json +50 -50
  8. package/src/helper/contextManager/browserManager.js +66 -66
  9. package/src/helper/contextManager/requestManager.js +30 -30
  10. package/src/helper/executers/cleaner.js +23 -23
  11. package/src/helper/executers/exporter.js +15 -15
  12. package/src/helper/executers/helper.js +44 -44
  13. package/src/helper/executers/projectCreator.js +162 -162
  14. package/src/helper/executers/reportGenerator.js +29 -29
  15. package/src/helper/executers/testRunner.js +59 -59
  16. package/src/helper/executers/versionChecker.js +13 -13
  17. package/src/helper/imports/commons.js +51 -51
  18. package/src/helper/pomController/elementController.js +146 -146
  19. package/src/helper/pomController/pomCollector.js +20 -20
  20. package/src/helper/stepFunctions/APIActions.js +271 -271
  21. package/src/helper/stepFunctions/assertions.js +523 -523
  22. package/src/helper/stepFunctions/browserActions.js +21 -19
  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 -36
  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 +76 -76
  31. package/src/stepDefinitions/API.steps.js +248 -248
  32. package/src/stepDefinitions/assertions.steps.js +826 -826
  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 +87 -87
  36. package/src/stepDefinitions/mouseActions.steps.js +256 -256
  37. package/src/stepDefinitions/page.steps.js +71 -71
  38. package/src/stepDefinitions/random.steps.js +25 -25
@@ -1,269 +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
- - [Assertions](#assertions)
10
-
11
- ---
12
-
13
- ## Mouse Actions
14
-
15
- ### Click Actions
16
-
17
- - User clicks `{string}`
18
- - User clicks `{string}` with force
19
- - User clicks `{string}` at `{int}, {int}` position
20
- - User clicks `{string}` at `{int}, {int}` position with force
21
- - User clicks at `{int}, {int}` coordinates
22
- - User clicks at `{int}, {int}` coordinates with click count `{int}` and delay `{int}`
23
- - User clicks at `{int}, {int}` coordinates with force
24
- - User clicks `{string}` with button `{string}`
25
- - User clicks `{string}` with button `{string}` and force
26
-
27
- ### Double Click Actions
28
-
29
- - User double clicks `{string}`
30
- - User double clicks `{string}` with force
31
- - User double clicks `{string}` at `{int}, {int}` position
32
- - User double clicks `{string}` at `{int}, {int}` position with force
33
- - User double clicks at `{int}, {int}` coordinates
34
- - User double clicks at `{int}, {int}` coordinates with click count `{int}` and delay `{int}`
35
- - User double clicks at `{int}, {int}` coordinates with force
36
-
37
- ### Mouse Movement Actions
38
-
39
- - User moves to `{int}, {int}` coordinates
40
- - User scrolls the mouse wheel at `{int}, {int}` coordinates
41
-
42
- ### Hover Actions
43
-
44
- - User hovers over `{string}`
45
- - User hovers over `{string}` with force
46
- - User hovers over `{string}` at `{int}, {int}` position
47
- - User hovers over `{string}` at `{int}, {int}` position with force
48
-
49
- ### Focus Actions
50
-
51
- - User focuses on `{string}`
52
- - User focuses on `{string}` with force
53
- - User focuses on `{string}` at `{int}, {int}` position
54
- - User focuses on `{string}` at `{int}, {int}` position with force
55
-
56
- ### Drag Actions
57
-
58
- - User drags `{string}` to `{string}`
59
- - User drags `{string}` to `{int}, {int}` position
60
-
61
- ### Selection Actions
62
-
63
- - User selects by value `{string}` from `{string}`
64
- - User selects by text `{string}` from `{string}`
65
-
66
- ### Checkbox Actions
67
-
68
- - User checks `{string}`
69
- - User unchecks `{string}`
70
-
71
- ### Scroll Actions
72
-
73
- - User scrolls into view for `{string}`
74
-
75
- ---
76
-
77
- ## Keyboard Actions
78
-
79
- ### Press Actions
80
-
81
- - User presses `{string} on {string}`
82
- - User presses keys `{string}` sequentially on `{string}`
83
- - User presses keys `{string}` sequentially with delay `{int} on {string}`
84
-
85
- ### Input Actions
86
-
87
- - User types `{string}` in `{string}`
88
- - User types `{string}` with delay `{int}`
89
- - User inserts text `{string}`
90
- - User clears `{string}`
91
-
92
- ### Selection Actions
93
-
94
- - User selects text in `{string}`
95
-
96
- ### File Input Actions
97
-
98
- - User sets input files `{string}` for `{string}`
99
-
100
- ### Key State Actions
101
-
102
- - User holds down `{string}`
103
- - User releases `{string}`
104
- - User presses `{string}`
105
-
106
- ---
107
-
108
- ## Page Actions
109
-
110
- ### Navigation Actions
111
-
112
- - User navigates to `{string}` page
113
- - User navigates previous page
114
- - User navigates next page
115
-
116
- ### URL Actions
117
-
118
- - User gets URL of page
119
-
120
- ### Wait Actions
121
-
122
- - User waits `{int}` seconds
123
- - User waits `{int}` milliseconds
124
- - User waits `{int}` minutes
125
-
126
- ---
127
-
128
- ## Frame Actions
129
-
130
- ### Screenshot Actions
131
-
132
- - User takes a screenshot of `{string}`
133
-
134
- ### Content and Locator Actions
135
-
136
- - User gets the content frame of `{string}`
137
- - User gets the frame locator of `{string}`
138
-
139
- ### Element Retrieval Actions
140
-
141
- - User gets the `{int}th` element of `{string}`
142
- - User gets the first element of `{string}`
143
- - User gets the last element of `{string}`
144
- - User filters elements of `{string}` with filter `{string}`
145
-
146
- ### Counting Actions
147
-
148
- - User counts the elements of `{string}`
149
-
150
- ### Accessibility-Based Retrieval Actions
151
-
152
- - User gets the element with alt text `{string}`
153
- - User gets the element with label `{string}`
154
- - User gets the element with placeholder `{string}`
155
- - User gets the element with role `{string}`
156
- - User gets the element with testI `{string}`
157
- - User gets the element with testII `{string}`
158
-
159
- ## Assertions
160
-
161
- - User expects `{string}` should be attached
162
- - User expects `{string}` should be checked
163
- - User expects `{string}` should be disabled
164
- - User expects `{string}` should be editable
165
- - User expects `{string}` should be empty
166
- - User expects `{string}` should be enabled
167
- - User expects `{string}` should be focused
168
- - User expects `{string}` should be hidden
169
- - User expects `{string}` should be on the screen
170
- - User expects `{string}` should be visible
171
- - User expects `{string}` should have `{string}` text
172
- - User expects `{string}` should have `{string}` description
173
- - User expects `{string}` should have `{string}` name
174
- - User expects `{string}` should have `{string}` attribute with `{string}` value
175
- - User expects `{string}` should have `{string}` class
176
- - User expects `{string}` should have `{int}` count
177
- - User expects `{string}` should have `{string}` CSS property with `{string}` value
178
- - User expects `{string}` should have `{string}` id
179
- - User expects `{string}` should have `{string}` JavaScript property with `{string}` value
180
- - User expects `{string}` should have `{string}` role
181
- - User expects `{string}` should have a screenshot
182
- - User expects `{string}` should match `{string}` text
183
- - User expects `{string}` should have `{string}` value
184
- - User expects `{string}` should have `{string}` values
185
- - User expects `{string}` should not be attached
186
- - User expects `{string}` should not be checked
187
- - User expects `{string}` should not be disabled
188
- - User expects `{string}` should not be editable
189
- - User expects `{string}` should not be empty
190
- - User expects `{string}` should not be enabled
191
- - User expects `{string}` should not be focused
192
- - User expects `{string}` should not be hidden
193
- - User expects `{string}` should not be on screen
194
- - User expects `{string}` should not be visible
195
- - User expects `{string}` should not have `{string}` text
196
- - User expects `{string}` should not have `{string}` description
197
- - User expects `{string}` should not have `{string}` name
198
- - User expects `{string}` should not have `{string}` attribute with `{string}` value
199
- - User expects `{string}` should not have `{string}` class
200
- - User expects count of `{string}` should not be `{int}`
201
- - User expects `{string}` should not have `{string}` CSS property with `{string}` value
202
- - User expects `{string}` should not have `{string}` id
203
- - User expects `{string}` should not have `{string}` JavaScript property with `{string}` value
204
- - User expects `{string}` should not have `{string}` role
205
- - User expects `{string}` should not match `{string}` text
206
- - User expects `{string}` should not have `{string}` value
207
- - User expects `{string}` should not have `{string}` values
208
- - User expects the page should not have a screenshot
209
- - User expects the page should not have `{string}` title
210
- - User expects the page url should not be `{string}`
211
- - User is not on `{string}` page
212
- - The response should not be OK
213
- - User expects `{string}` should be `{string}` text
214
- - User expects `{string}` should be close to `{float}` with precision `{int}`
215
- - User expects `{string}` should be defined
216
- - User expects `{string}` should be falsy
217
- - User expects `{string}` should be greater than `{float}`
218
- - User expects `{string}` should be greater than or equal to `{float}`
219
- - User expects `{string}` should be an instance of `{string}`
220
- - User expects `{string}` should be less than `{float}`
221
- - User expects `{string}` should be less than or equal to `{float}`
222
- - User expects `{string}` should be NaN
223
- - User expects `{string}` should be null
224
- - User expects `{string}` should be truthy
225
- - User expects `{string}` should be undefined
226
- - User expects `{string}` should have `{string}` substring
227
- - User expects `{string}` should contain equal `{string}`
228
- - User expects `{string}` should equal `{int}`
229
- - User expects length of `{string}` should be `{int}`
230
- - User expects `{string}` should have `{string}` property
231
- - User expects `{string}` should match `{string}` regex
232
- - User expects `{string}` should match `{string}` object
233
- - User expects `{string}` should strictly equal `{string}`
234
- - The function should throw
235
- - User expects `{string}` should be any instance of `{string}`
236
- - User expects `{string}` may be anything
237
- - User expects `{string}` should contain `{string}` array elements
238
- - User expects `{string}` should be close to `{float}` with precision `{int}`
239
- - User expects `{string}` should contain `{string}` object properties
240
- - User expects `{string}` should have `{string}` substring
241
- - User expects `{string}` should match `{string}` regex
242
- - User expects `{string}` should not have `{string}` text
243
- - User expects `{string}` should not be close to `{float}` with precision `{int}`
244
- - User expects `{string}` should not be defined
245
- - User expects `{string}` should not be falsy
246
- - User expects `{string}` should not be greater than `{float}`
247
- - User expects `{string}` should not be greater than or equal to `{float}`
248
- - User expects `{string}` should not be instance of `{string}`
249
- - User expects `{string}` should not be less than `{float}`
250
- - User expects `{string}` should not be less than or equal to `{float}`
251
- - User expects `{string}` should not be NaN
252
- - User expects `{string}` should not be null
253
- - User expects `{string}` should not be truthy
254
- - User expects `{string}` should not be undefined
255
- - User expects `{string}` should not have `{string}` substring
256
- - User expects `{string}` should not contain equal `{string}`
257
- - User expects `{string}` should not equal `{string}`
258
- - User expects length of `{string}` should not be `{int}`
259
- - User expects `{string}` should not have `{string}` property
260
- - User expects `{string}` should not match `{string}` regex
261
- - User expects `{string}` should not match `{string}` object
262
- - The function should not throw
263
- - User expects `{string}` should not be any instance of `{string}`
264
- - User expects `{string}` may not be anything
265
- - User expects `{string}` should not contain `{string}` array elements
266
- - User expects `{string}` should not be close to `{float}` with precision `{int}`
267
- - User expects `{string}` should not contain `{string}` object properties
268
- - User expects `{string}` should not contain `{string}` substring
269
- - User expects `{string}` should not match `{string}` regex
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 request should have `{int}` status code
352
+ - User expects that response body should match `{string}` schema