@uuv/runner-commons 2.51.0 → 2.53.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,22 @@
|
|
|
1
|
+
# [2.53.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.52.0...runner-commons-v2.53.0) (2025-07-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update doc for grid and table sentences, [#1029](https://github.com/e2e-test-quest/uuv/issues/1029) ([751e12a](https://github.com/e2e-test-quest/uuv/commit/751e12ab912fa6890717526a4b5e15be7aeafb91))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add treegrid sentence, [#1029](https://github.com/e2e-test-quest/uuv/issues/1029) ([847462e](https://github.com/e2e-test-quest/uuv/commit/847462e75fd733ee332f197a1b72b331c0fe5b98))
|
|
12
|
+
|
|
13
|
+
# [2.52.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.51.0...runner-commons-v2.52.0) (2025-07-01)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* 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))
|
|
19
|
+
|
|
1
20
|
# [2.51.0](https://github.com/e2e-test-quest/uuv/compare/runner-commons-v2.50.0...runner-commons-v2.51.0) (2025-06-08)
|
|
2
21
|
|
|
3
22
|
|
|
@@ -179,6 +179,21 @@
|
|
|
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 grid with the specified [name](https://russmaxdesign.github.io/html-elements-names/) containing list items.<br/> <u>Example</u>\\n```gherkin\\nWhen I visit path \"https://e2e-test-quest.github.io/simple-webapp/grid.html\"\\nThen I should see a grid named \"HTML Grid Example\" and containing\\n| Make | Model | Price |\\n| ------------ | ------- | ------ |\\n| Toyota | Celica | 35000 |\\n| Ford | Mondeo | 32000 |\\n| Porsche | Boxster | 72000 |\\n| BMW | M50 | 60000 |\\n| Aston Martin | DBX | 190000 |\\n```",
|
|
185
|
+
"wording": "I should see a grid named {string} and containing"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"key": "key.then.treegrid.withNameAndContent",
|
|
189
|
+
"description": "Checks that there is a treegrid with the specified [name](https://russmaxdesign.github.io/html-elements-names/) containing list items.<br/> <u>Example</u>\\n```gherkin\\nWhen I visit path \"https://e2e-test-quest.github.io/simple-webapp/treegrid.html\"\\nThen I should see a treegrid named \"HTML Treegrid Example\" and containing\\n| Make | Model | Price |\\n| ------------ | ------- | ------ |\\n| Toyota | Celica | 35000 |\\n| Ford | Mondeo | 32000 |\\n| Porsche | Boxster | 72000 |\\n| BMW | M50 | 60000 |\\n| Aston Martin | DBX | 190000 |\\n```",
|
|
190
|
+
"wording": "I should see a treegrid named {string} and containing"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"key": "key.then.table.withNameAndContent",
|
|
194
|
+
"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\\nWhen I visit path \"https://e2e-test-quest.github.io/simple-webapp/table.html\"\\nThen I should see a table named \"test-list\" and containing\\n| Company | Contact | Country |\\n| ----------------------------- | ---------------- | ------- |\\n| Alfreds Futterkiste | Maria Anders | Germany |\\n| Centro comercial Moctezuma | Francisco Chang | Mexico |\\n| Ernst Handel | Roland Mendel | Austria |\\n| Island Trading | Helen Bennett | UK |\\n| Laughing Bacchus Winecellars | Yoshi Tannamuri | Canada |\\n| Magazzini Alimentari Riuniti | Giovanni Rovelli | Italy |\\n```",
|
|
195
|
+
"wording": "I should see a table named {string} and containing"
|
|
196
|
+
},
|
|
182
197
|
{
|
|
183
198
|
"key": "key.then.element.not.withContent",
|
|
184
199
|
"description": "Checks that an Html element does not exists with the specified content",
|
package/package.json
CHANGED
|
@@ -179,6 +179,21 @@
|
|
|
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 grid with the specified [name](https://russmaxdesign.github.io/html-elements-names/) containing list items.<br/> <u>Example</u>\\n```gherkin\\nWhen I visit path \"https://e2e-test-quest.github.io/simple-webapp/grid.html\"\\nThen I should see a grid named \"HTML Grid Example\" and containing\\n| Make | Model | Price |\\n| ------------ | ------- | ------ |\\n| Toyota | Celica | 35000 |\\n| Ford | Mondeo | 32000 |\\n| Porsche | Boxster | 72000 |\\n| BMW | M50 | 60000 |\\n| Aston Martin | DBX | 190000 |\\n```",
|
|
185
|
+
"wording": "I should see a grid named {string} and containing"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"key": "key.then.treegrid.withNameAndContent",
|
|
189
|
+
"description": "Checks that there is a treegrid with the specified [name](https://russmaxdesign.github.io/html-elements-names/) containing list items.<br/> <u>Example</u>\\n```gherkin\\nWhen I visit path \"https://e2e-test-quest.github.io/simple-webapp/treegrid.html\"\\nThen I should see a treegrid named \"HTML Treegrid Example\" and containing\\n| Make | Model | Price |\\n| ------------ | ------- | ------ |\\n| Toyota | Celica | 35000 |\\n| Ford | Mondeo | 32000 |\\n| Porsche | Boxster | 72000 |\\n| BMW | M50 | 60000 |\\n| Aston Martin | DBX | 190000 |\\n```",
|
|
190
|
+
"wording": "I should see a treegrid named {string} and containing"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"key": "key.then.table.withNameAndContent",
|
|
194
|
+
"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\\nWhen I visit path \"https://e2e-test-quest.github.io/simple-webapp/table.html\"\\nThen I should see a table named \"test-list\" and containing\\n| Company | Contact | Country |\\n| ----------------------------- | ---------------- | ------- |\\n| Alfreds Futterkiste | Maria Anders | Germany |\\n| Centro comercial Moctezuma | Francisco Chang | Mexico |\\n| Ernst Handel | Roland Mendel | Austria |\\n| Island Trading | Helen Bennett | UK |\\n| Laughing Bacchus Winecellars | Yoshi Tannamuri | Canada |\\n| Magazzini Alimentari Riuniti | Giovanni Rovelli | Italy |\\n```",
|
|
195
|
+
"wording": "I should see a table named {string} and containing"
|
|
196
|
+
},
|
|
182
197
|
{
|
|
183
198
|
"key": "key.then.element.not.withContent",
|
|
184
199
|
"description": "Checks that an Html element does not exists with the specified content",
|
|
@@ -179,6 +179,21 @@
|
|
|
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 grille (grid) avec le nom et les éléments spécifiés.<br/> <u>Exemple</u>\\n```gherkin\\nQuand je visite l'Url \"https://e2e-test-quest.github.io/simple-webapp/grid.html\"\\nAlors je dois voir une liste nommée \"HTML Grid Example\" et contenant\\n| Make | Model | Price |\\n| ------------ | ------- | ------ |\\n| Toyota | Celica | 35000 |\\n| Ford | Mondeo | 32000 |\\n| Porsche | Boxster | 72000 |\\n| BMW | M50 | 60000 |\\n| Aston Martin | DBX | 190000 |\\n```",
|
|
185
|
+
"wording": "je dois voir une grille nommée {string} et contenant"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"key": "key.then.treegrid.withNameAndContent",
|
|
189
|
+
"description": "Vérifie qu'il existe une grille arborescente (treegrid) avec le nom et les éléments spécifiés.<br/> <u>Exemple</u>\\n```gherkin\\nQuand je visite l'Url \"https://e2e-test-quest.github.io/simple-webapp/treegrid.html\"\\nAlors je dois voir une liste nommée \"HTML Treegrid Example\" et contenant\\n| Make | Model | Price |\\n| ------------ | ------- | ------ |\\n| Toyota | Celica | 35000 |\\n| Ford | Mondeo | 32000 |\\n| Porsche | Boxster | 72000 |\\n| BMW | M50 | 60000 |\\n| Aston Martin | DBX | 190000 |\\n```",
|
|
190
|
+
"wording": "je dois voir une grille arborescente nommée {string} et contenant"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"key": "key.then.table.withNameAndContent",
|
|
194
|
+
"description": "Vérifie qu'il existe un tableau (table) avec le nom et les éléments spécifiés.<br/> <u>Exemple</u>\\n```gherkin\\nQuand je visite l'Url \"https://e2e-test-quest.github.io/simple-webapp/table.html\"\\nAlors je dois voir un tableau nommée \"HTML Table Example\" et contenant\\n| Company | Contact | Country |\\n| ----------------------------- | ---------------- | ------- |\\n| Alfreds Futterkiste | Maria Anders | Germany |\\n| Centro comercial Moctezuma | Francisco Chang | Mexico |\\n| Ernst Handel | Roland Mendel | Austria |\\n| Island Trading | Helen Bennett | UK |\\n| Laughing Bacchus Winecellars | Yoshi Tannamuri | Canada |\\n| Magazzini Alimentari Riuniti | Giovanni Rovelli | Italy |\\n```",
|
|
195
|
+
"wording": "je dois voir un tableau nommé {string} et contenant"
|
|
196
|
+
},
|
|
182
197
|
{
|
|
183
198
|
"key": "key.then.element.not.withContent",
|
|
184
199
|
"description": "Vérifie qu'un élément Html n'existe pas avec le contenu spécifié",
|