@uuv/runner-commons 2.52.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,15 @@
|
|
|
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
|
+
|
|
1
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)
|
|
2
14
|
|
|
3
15
|
|
|
@@ -181,12 +181,17 @@
|
|
|
181
181
|
},
|
|
182
182
|
{
|
|
183
183
|
"key": "key.then.grid.withNameAndContent",
|
|
184
|
-
"description": "Checks that there is a
|
|
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
185
|
"wording": "I should see a grid named {string} and containing"
|
|
186
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
|
+
},
|
|
187
192
|
{
|
|
188
193
|
"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
|
|
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```",
|
|
190
195
|
"wording": "I should see a table named {string} and containing"
|
|
191
196
|
},
|
|
192
197
|
{
|
package/package.json
CHANGED
|
@@ -181,12 +181,17 @@
|
|
|
181
181
|
},
|
|
182
182
|
{
|
|
183
183
|
"key": "key.then.grid.withNameAndContent",
|
|
184
|
-
"description": "Checks that there is a
|
|
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
185
|
"wording": "I should see a grid named {string} and containing"
|
|
186
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
|
+
},
|
|
187
192
|
{
|
|
188
193
|
"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
|
|
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```",
|
|
190
195
|
"wording": "I should see a table named {string} and containing"
|
|
191
196
|
},
|
|
192
197
|
{
|
|
@@ -181,12 +181,17 @@
|
|
|
181
181
|
},
|
|
182
182
|
{
|
|
183
183
|
"key": "key.then.grid.withNameAndContent",
|
|
184
|
-
"description": "Vérifie qu'il existe une
|
|
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
185
|
"wording": "je dois voir une grille nommée {string} et contenant"
|
|
186
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
|
+
},
|
|
187
192
|
{
|
|
188
193
|
"key": "key.then.table.withNameAndContent",
|
|
189
|
-
"description": "Vérifie qu'il existe
|
|
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```",
|
|
190
195
|
"wording": "je dois voir un tableau nommé {string} et contenant"
|
|
191
196
|
},
|
|
192
197
|
{
|