@uuv/runner-commons 2.50.0 → 2.52.0
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [2.52.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.51.0...runner-commons-v2.52.0) (2025-07-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add grid and table sentences, [#1029](https://github.com/e2e-test-quest/uuv/issues/1029) ([97f7330](https://github.com/e2e-test-quest/uuv/commit/97f7330a50926a872275c4f5ad026920174a9592))
|
|
7
|
+
|
|
8
|
+
# [2.51.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.50.0...runner-commons-v2.51.0) (2025-06-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **runner-playwright:** update dependency playwright-bdd to v8.3.0 ([5be62fc](https://github.com/e2e-test-quest/uuv/commit/5be62fce63fdd6ebbd5a33cb3b5910a339d18a57))
|
|
14
|
+
|
|
1
15
|
# [2.50.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.49.0...runner-commons-v2.50.0) (2025-06-01)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -179,6 +179,16 @@
|
|
|
179
179
|
"description": "Checks that there is a list with the specified [name](https://russmaxdesign.github.io/html-elements-names/) containing list items.<br/> <u>Example</u>\\n```gherkin\\nThen I should see a list named \"test-list\" and containing\\n| First element |\\n| Second element |\\n| Third element |\\n```",
|
|
180
180
|
"wording": "I should see a list named {string} and containing"
|
|
181
181
|
},
|
|
182
|
+
{
|
|
183
|
+
"key": "key.then.grid.withNameAndContent",
|
|
184
|
+
"description": "Checks that there is a list with the specified [name](https://russmaxdesign.github.io/html-elements-names/) containing list items.<br/> <u>Example</u>\\n```gherkin\\nThen I should see a list named \"test-list\" and containing\\n| First element |\\n| Second element |\\n| Third element |\\n```",
|
|
185
|
+
"wording": "I should see a grid named {string} and containing"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"key": "key.then.table.withNameAndContent",
|
|
189
|
+
"description": "Checks that there is a table with the specified [name](https://russmaxdesign.github.io/html-elements-names/) containing list items.<br/> <u>Example</u>\\n```gherkin\\nThen I should see a list named \"test-list\" and containing\\n| First element |\\n| Second element |\\n| Third element |\\n```",
|
|
190
|
+
"wording": "I should see a table named {string} and containing"
|
|
191
|
+
},
|
|
182
192
|
{
|
|
183
193
|
"key": "key.then.element.not.withContent",
|
|
184
194
|
"description": "Checks that an Html element does not exists with the specified content",
|
package/package.json
CHANGED
|
@@ -179,6 +179,16 @@
|
|
|
179
179
|
"description": "Checks that there is a list with the specified [name](https://russmaxdesign.github.io/html-elements-names/) containing list items.<br/> <u>Example</u>\\n```gherkin\\nThen I should see a list named \"test-list\" and containing\\n| First element |\\n| Second element |\\n| Third element |\\n```",
|
|
180
180
|
"wording": "I should see a list named {string} and containing"
|
|
181
181
|
},
|
|
182
|
+
{
|
|
183
|
+
"key": "key.then.grid.withNameAndContent",
|
|
184
|
+
"description": "Checks that there is a list with the specified [name](https://russmaxdesign.github.io/html-elements-names/) containing list items.<br/> <u>Example</u>\\n```gherkin\\nThen I should see a list named \"test-list\" and containing\\n| First element |\\n| Second element |\\n| Third element |\\n```",
|
|
185
|
+
"wording": "I should see a grid named {string} and containing"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"key": "key.then.table.withNameAndContent",
|
|
189
|
+
"description": "Checks that there is a table with the specified [name](https://russmaxdesign.github.io/html-elements-names/) containing list items.<br/> <u>Example</u>\\n```gherkin\\nThen I should see a list named \"test-list\" and containing\\n| First element |\\n| Second element |\\n| Third element |\\n```",
|
|
190
|
+
"wording": "I should see a table named {string} and containing"
|
|
191
|
+
},
|
|
182
192
|
{
|
|
183
193
|
"key": "key.then.element.not.withContent",
|
|
184
194
|
"description": "Checks that an Html element does not exists with the specified content",
|
|
@@ -179,6 +179,16 @@
|
|
|
179
179
|
"description": "Vérifie qu'il existe une liste avec le nom et les éléments de liste spécifiés.<br/> <u>Exemple</u>\\n```gherkin\\nAlors je dois voir une liste nommée \"test-list\" et contenant\\n| Premier élément |\\n| Deuxième élément |\\n| Troisième élément |\\n```",
|
|
180
180
|
"wording": "je dois voir une liste nommée {string} et contenant"
|
|
181
181
|
},
|
|
182
|
+
{
|
|
183
|
+
"key": "key.then.grid.withNameAndContent",
|
|
184
|
+
"description": "Vérifie qu'il existe une liste avec le nom et les éléments de liste spécifiés.<br/> <u>Exemple</u>\\n```gherkin\\nAlors je dois voir une liste nommée \"test-list\" et contenant\\n| Premier élément |\\n| Deuxième élément |\\n| Troisième élément |\\n```",
|
|
185
|
+
"wording": "je dois voir une grille nommée {string} et contenant"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"key": "key.then.table.withNameAndContent",
|
|
189
|
+
"description": "Vérifie qu'il existe une liste avec le nom et les éléments de liste spécifiés.<br/> <u>Exemple</u>\\n```gherkin\\nAlors je dois voir une liste nommée \"test-list\" et contenant\\n| Premier élément |\\n| Deuxième élément |\\n| Troisième élément |\\n```",
|
|
190
|
+
"wording": "je dois voir un tableau nommé {string} et contenant"
|
|
191
|
+
},
|
|
182
192
|
{
|
|
183
193
|
"key": "key.then.element.not.withContent",
|
|
184
194
|
"description": "Vérifie qu'un élément Html n'existe pas avec le contenu spécifié",
|