@zohodesk/testinglibrary 4.0.3 → 4.0.4
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/.gitlab-ci.yml +16 -14
- package/README.md +7 -3
- package/build/common/searchFake/steps/searchFake.spec.js +3 -3
- package/build/core/jest/setup/index.js +1 -1
- package/build/core/playwright/helpers/thirdPartyLib.js +13 -0
- package/build/test/Test.js +13 -0
- package/build/utils/fileUtils.js +1 -1
- package/package.json +27 -24
- package/npm-shrinkwrap.json +0 -11388
package/.gitlab-ci.yml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
image:
|
|
1
|
+
image: zdesk-auto13.csez.zohocorpin.com/long-term-storage/node18-npm10:v2
|
|
2
2
|
|
|
3
3
|
workflow:
|
|
4
4
|
rules:
|
|
@@ -188,19 +188,21 @@ uat-data_generator:
|
|
|
188
188
|
paths:
|
|
189
189
|
- examples/uat/playwright-report
|
|
190
190
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
191
|
+
uat-search_indexing:
|
|
192
|
+
stage: uat
|
|
193
|
+
script:
|
|
194
|
+
- cd examples
|
|
195
|
+
- npm install $(npm pack ../../testing-framework | tail -1)
|
|
196
|
+
- echo "Removing jsonpath from examples/node_modules to avoid conflicts"
|
|
197
|
+
- rm -rf node_modules/jsonpath || true
|
|
198
|
+
- output=$(npm run uat-search_indexing)
|
|
199
|
+
- echo "$output"
|
|
200
|
+
- node ../ValidateUATReport.js examples
|
|
201
|
+
|
|
202
|
+
artifacts:
|
|
203
|
+
when: always
|
|
204
|
+
paths:
|
|
205
|
+
- examples/uat/playwright-report
|
|
204
206
|
|
|
205
207
|
|
|
206
208
|
|
package/README.md
CHANGED
|
@@ -16,9 +16,14 @@
|
|
|
16
16
|
### Generate Report
|
|
17
17
|
|
|
18
18
|
- npm run report
|
|
19
|
-
|
|
20
19
|
|
|
21
|
-
### v4.0.
|
|
20
|
+
### v4.0.4/v3.2.20 - 19-12-2025
|
|
21
|
+
|
|
22
|
+
#### Enhancement
|
|
23
|
+
- New common step provided for search index with the data generated entity
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### v4.0.3/v3.2.19 - 17-12-2025
|
|
22
27
|
|
|
23
28
|
#### Enhancement
|
|
24
29
|
- Cookie storage prefix support is provided in this version.
|
|
@@ -43,7 +48,6 @@
|
|
|
43
48
|
- @playwright/test - 1.56.1,
|
|
44
49
|
- @cucumber/cucumber - 12.2.0
|
|
45
50
|
|
|
46
|
-
|
|
47
51
|
### v3.2.15 - 14-11-2025
|
|
48
52
|
|
|
49
53
|
#### Enhancement
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {createBdd
|
|
1
|
+
import {createBdd} from '@zohodesk/testinglibrary';
|
|
2
|
+
import { jsonpath } from '@zohodesk/testinglibrary/thirdPartyHelper';
|
|
2
3
|
import { executeRpcRequest , entityIdReConstructor } from '../helpers/rpcRequestHelper';
|
|
3
|
-
// import jp from 'jsonpath';
|
|
4
4
|
|
|
5
5
|
const { Given } = createBdd();
|
|
6
6
|
|
|
@@ -54,7 +54,7 @@ Given('a search entity using {string}', async ({page,cacheLayer}, reference,data
|
|
|
54
54
|
entityIdValue = searchObj;
|
|
55
55
|
} else {
|
|
56
56
|
const jsonPath = searchEntity?.startsWith?.('$') ? searchEntity : `$.${searchEntity}`;
|
|
57
|
-
const result =
|
|
57
|
+
const result = jsonpath.query(searchObj, jsonPath);
|
|
58
58
|
|
|
59
59
|
if (!result || result.length === 0) {
|
|
60
60
|
throw new Error(`JSONPath query '${jsonPath}' returned no results from cache object for reference: ${reference}`);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "jsonpath", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () {
|
|
10
|
+
return _jsonpath.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _jsonpath = _interopRequireDefault(require("jsonpath"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
delete require.cache[require.resolve('../core/playwright/runner/Runner')];
|
|
4
|
+
function test() {
|
|
5
|
+
const inputString = "@hc";
|
|
6
|
+
const selectedTag = ["@hc_1234"].reverse().find(tag => tag.startsWith(inputString));
|
|
7
|
+
let tagInput = null;
|
|
8
|
+
if (selectedTag) {
|
|
9
|
+
tagInput = selectedTag.split(`${inputString}_`).pop().toLowerCase();
|
|
10
|
+
}
|
|
11
|
+
console.log(tagInput);
|
|
12
|
+
}
|
|
13
|
+
test();
|
package/build/utils/fileUtils.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
4
|
+
"description": "",
|
|
4
5
|
"main": "./build/index.js",
|
|
5
6
|
"scripts": {
|
|
6
7
|
"postinstall": "node bin/postinstall.js",
|
|
@@ -14,29 +15,30 @@
|
|
|
14
15
|
"exports": {
|
|
15
16
|
".": "./build/index.js",
|
|
16
17
|
"./helpers": "./build/core/playwright/helpers/auth/index.js",
|
|
17
|
-
"./DataGenerator": "./build/core/dataGenerator/DataGenerator.js"
|
|
18
|
+
"./DataGenerator": "./build/core/dataGenerator/DataGenerator.js",
|
|
19
|
+
"./thirdPartyHelper": "./build/core/playwright/helpers/thirdPartyLib.js"
|
|
18
20
|
},
|
|
19
21
|
"keywords": [],
|
|
20
22
|
"author": "",
|
|
21
23
|
"license": "ISC",
|
|
22
24
|
"dependencies": {
|
|
23
25
|
"@babel/code-frame": "7.27.1",
|
|
24
|
-
"@babel/preset-react": "7.
|
|
25
|
-
"@cucumber/cucumber": "
|
|
26
|
-
"@playwright/test": "1.
|
|
27
|
-
"@reportportal/agent-js-playwright": "5.
|
|
28
|
-
"@testing-library/jest-dom": "
|
|
29
|
-
"babel-jest": "
|
|
26
|
+
"@babel/preset-react": "7.22.5",
|
|
27
|
+
"@cucumber/cucumber": "11.3.0",
|
|
28
|
+
"@playwright/test": "1.53.2",
|
|
29
|
+
"@reportportal/agent-js-playwright": "5.1.11",
|
|
30
|
+
"@testing-library/jest-dom": "5.11.9",
|
|
31
|
+
"babel-jest": "29.6.2",
|
|
30
32
|
"babel-plugin-transform-dynamic-import": "2.1.0",
|
|
31
|
-
"fast-glob": "3.3.
|
|
32
|
-
"jest": "
|
|
33
|
-
"jest-environment-jsdom": "
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"playwright": "
|
|
37
|
-
"playwright-bdd": "8.4.2",
|
|
33
|
+
"fast-glob": "3.3.1",
|
|
34
|
+
"jest": "29.6.2",
|
|
35
|
+
"jest-environment-jsdom": "29.6.2",
|
|
36
|
+
"msw": "1.2.3",
|
|
37
|
+
"playwright": "1.53.2",
|
|
38
|
+
"playwright-bdd": "8.3.1",
|
|
38
39
|
"properties-reader": "2.3.0",
|
|
39
|
-
"supports-color": "
|
|
40
|
+
"supports-color": "8.1.1",
|
|
41
|
+
"jsonpath": "^1.1.1"
|
|
40
42
|
},
|
|
41
43
|
"bin": {
|
|
42
44
|
"ZDTestingFramework": "./bin/cli.js"
|
|
@@ -47,13 +49,14 @@
|
|
|
47
49
|
"react-dom": "*"
|
|
48
50
|
},
|
|
49
51
|
"devDependencies": {
|
|
50
|
-
"@babel/cli": "7.
|
|
51
|
-
"@babel/core": "7.
|
|
52
|
-
"@babel/node": "7.
|
|
53
|
-
"@babel/plugin-transform-runtime": "7.
|
|
54
|
-
"@babel/
|
|
55
|
-
"@babel/
|
|
56
|
-
"
|
|
57
|
-
"
|
|
52
|
+
"@babel/cli": "7.22.15",
|
|
53
|
+
"@babel/core": "7.22.17",
|
|
54
|
+
"@babel/node": "7.22.15",
|
|
55
|
+
"@babel/plugin-transform-runtime": "7.22.15",
|
|
56
|
+
"@babel/polyfill": "7.12.1",
|
|
57
|
+
"@babel/preset-env": "7.22.15",
|
|
58
|
+
"@babel/runtime": "7.22.15",
|
|
59
|
+
"commander": "11.0.0",
|
|
60
|
+
"jest-html-reporter": "3.10.2"
|
|
58
61
|
}
|
|
59
62
|
}
|