@uuv/cypress 2.65.0 → 2.65.2
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.65.2](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v2.65.1...runner-cypress-v2.65.2) (2025-08-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **assistant:** remove @testing-library/dom dependency and adapt selector ([14684af](https://github.com/e2e-test-quest/uuv/commit/14684afd4ddce4a7041bc09543a6a6df6d1e3a1c))
|
|
7
|
+
|
|
8
|
+
## [2.65.1](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v2.65.0...runner-cypress-v2.65.1) (2025-08-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* manage aggrid case for runner and assistant, [#1070](https://github.com/e2e-test-quest/uuv/issues/1070) ([dd00aa3](https://github.com/e2e-test-quest/uuv/commit/dd00aa323e153729c3297c26d39378f8eb72c446))
|
|
14
|
+
|
|
1
15
|
# [2.65.0](https://github.com/e2e-test-quest/uuv/compare/runner-cypress-v2.64.0...runner-cypress-v2.65.0) (2025-07-27)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -25,6 +25,8 @@ exports.uuvFindByTestId = uuvFindByTestId;
|
|
|
25
25
|
exports.uuvFoundedElement = uuvFoundedElement;
|
|
26
26
|
exports.pressKey = pressKey;
|
|
27
27
|
const runner_commons_1 = require("@uuv/runner-commons");
|
|
28
|
+
const dom_accessibility_api_1 = require("dom-accessibility-api");
|
|
29
|
+
const dom_1 = require("@testing-library/dom");
|
|
28
30
|
const contextAlias = "context";
|
|
29
31
|
const foundedChildElementAlias = "foundedChildElement";
|
|
30
32
|
const shouldGenerateA11yReport = () => {
|
|
@@ -78,7 +80,12 @@ function expectTableToHaveContent(expectedElementsOfList, cellAccessibleRole) {
|
|
|
78
80
|
cy.findAllByRole("row").each(($row, index) => {
|
|
79
81
|
const cellRole = index === 0 ? "columnheader" : cellAccessibleRole;
|
|
80
82
|
cy.findAllByRole(cellRole, { container: $row }).then(($cells) => {
|
|
81
|
-
const ligne = Array.from($cells, cell =>
|
|
83
|
+
const ligne = Array.from($cells, cell => {
|
|
84
|
+
if (cell.classList.contains("ag-floating-filter")) {
|
|
85
|
+
return (0, dom_1.within)(cell).getAllByRole("button").reduce((accumulator, button) => accumulator + (accumulator.length > 0 ? " " : "") + (0, dom_accessibility_api_1.computeAccessibleName)(button), "");
|
|
86
|
+
}
|
|
87
|
+
return (0, dom_accessibility_api_1.computeAccessibleName)(cell);
|
|
88
|
+
});
|
|
82
89
|
actualTableContent.push(ligne);
|
|
83
90
|
});
|
|
84
91
|
}).then(() => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uuv/cypress",
|
|
3
|
-
"version": "2.65.
|
|
3
|
+
"version": "2.65.2",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"author": "Louis Fredice NJAKO MOLOM (https://github.com/luifr10) & Stanley SERVICAL (https://github.com/stanlee974)",
|
|
6
6
|
"description": "A solution to facilitate the writing and execution of E2E tests understandable by any human being using cucumber(BDD) and cypress",
|
|
@@ -47,13 +47,14 @@
|
|
|
47
47
|
"@badeball/cypress-cucumber-preprocessor": "22.0.1",
|
|
48
48
|
"@cypress/webpack-preprocessor": "6.0.4",
|
|
49
49
|
"@testing-library/cypress": "10.0.3",
|
|
50
|
-
"@uuv/a11y": "1.0.0-beta.
|
|
51
|
-
"@uuv/runner-commons": "2.59.
|
|
50
|
+
"@uuv/a11y": "1.0.0-beta.77",
|
|
51
|
+
"@uuv/runner-commons": "2.59.2",
|
|
52
52
|
"axe-core": "4.10.3",
|
|
53
53
|
"chai-subset": "^1.6.0",
|
|
54
54
|
"cypress": "14.4.0",
|
|
55
55
|
"cypress-axe": "1.6.0",
|
|
56
56
|
"cypress-real-events": "^1.10.0",
|
|
57
|
+
"dom-accessibility-api": "^0.7.0",
|
|
57
58
|
"is-admin": "4.0.0",
|
|
58
59
|
"junit-report-merger": "^7.0.0",
|
|
59
60
|
"lodash": "^4.17.21",
|