@sap_oss/wdio-qmate-service 1.0.0 → 1.0.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/README.md +2 -1
- package/{test/core/package-lock.json → docs/bestPractices/spec.md} +0 -0
- package/docs/doc.md +176 -353
- package/docs/gettingStarted/setup.md +2 -2
- package/docs/index.md +1 -1
- package/docs/sections/bestPractices/authentication.md +151 -0
- package/docs/sections/bestPractices/dataHandling.md +61 -0
- package/docs/sections/bestPractices/selectors.md +44 -0
- package/docs/{contact.md → sections/contact.md} +0 -0
- package/docs/sections/features/advancedDataHandling.md +252 -0
- package/docs/sections/features/config.md +171 -0
- package/docs/sections/features/dataHandling.md +83 -0
- package/docs/{gettingStarted → sections/features}/selectors.md +0 -0
- package/docs/sections/features/spec.md +0 -0
- package/docs/sections/gettingStarted/config.md +18 -0
- package/docs/sections/gettingStarted/execution.md +7 -0
- package/docs/sections/gettingStarted/setup.md +9 -0
- package/docs/sections/gettingStarted/spec.md +31 -0
- package/docs/sections/gettingStarted/specs.md +19 -0
- package/docs/sections/support/bugReporting.md +19 -0
- package/docs/sections/support/knownIssuesAndLimitations.md +0 -0
- package/docs/sections/support/troubleshooting.md +16 -0
- package/docs/sources/images/fiori_form.PNG +0 -0
- package/docs/sources/images/sapCloud_form.PNG +0 -0
- package/lib/index.js +59 -82
- package/lib/index.js.map +1 -1
- package/lib/reuse/authenticator/authHandler.js +12 -23
- package/lib/reuse/authenticator/authHandler.js.map +1 -1
- package/lib/reuse/authenticator/basicUrlAuthenticator.js +21 -32
- package/lib/reuse/authenticator/basicUrlAuthenticator.js.map +1 -1
- package/lib/reuse/authenticator/customAuthenticator.js +42 -55
- package/lib/reuse/authenticator/customAuthenticator.js.map +1 -1
- package/lib/reuse/authenticator/formAuthenticator.js +37 -50
- package/lib/reuse/authenticator/formAuthenticator.js.map +1 -1
- package/lib/reuse/authenticator/plainAuthenticator.js +5 -16
- package/lib/reuse/authenticator/plainAuthenticator.js.map +1 -1
- package/lib/reuse/helper/jsDocGen.js +4 -12
- package/lib/reuse/helper/jsDocGen.js.map +1 -1
- package/lib/reuse/index.js +20 -5
- package/lib/reuse/index.js.map +1 -1
- package/lib/reuse/modules/common/navigation.js +10 -23
- package/lib/reuse/modules/common/navigation.js.map +1 -1
- package/lib/reuse/modules/common/userInteraction.js +40 -73
- package/lib/reuse/modules/common/userInteraction.js.map +1 -1
- package/lib/reuse/modules/nonUi5/assertion.js +31 -52
- package/lib/reuse/modules/nonUi5/assertion.js.map +1 -1
- package/lib/reuse/modules/nonUi5/element.js +266 -331
- package/lib/reuse/modules/nonUi5/element.js.map +1 -1
- package/lib/reuse/modules/nonUi5/navigation.js +10 -21
- package/lib/reuse/modules/nonUi5/navigation.js.map +1 -1
- package/lib/reuse/modules/nonUi5/userInteraction.js +176 -215
- package/lib/reuse/modules/nonUi5/userInteraction.js.map +1 -1
- package/lib/reuse/modules/service/odata.d.ts +106 -94
- package/lib/reuse/modules/service/odata.js +209 -204
- package/lib/reuse/modules/service/odata.js.map +1 -1
- package/lib/reuse/modules/service/rest.js +64 -81
- package/lib/reuse/modules/service/rest.js.map +1 -1
- package/lib/reuse/modules/ui5/assertion.js +217 -268
- package/lib/reuse/modules/ui5/assertion.js.map +1 -1
- package/lib/reuse/modules/ui5/confirmationDialog.js +17 -42
- package/lib/reuse/modules/ui5/confirmationDialog.js.map +1 -1
- package/lib/reuse/modules/ui5/control.js +12 -33
- package/lib/reuse/modules/ui5/control.js.map +1 -1
- package/lib/reuse/modules/ui5/date.js +70 -89
- package/lib/reuse/modules/ui5/date.js.map +1 -1
- package/lib/reuse/modules/ui5/element.js +121 -156
- package/lib/reuse/modules/ui5/element.js.map +1 -1
- package/lib/reuse/modules/ui5/errorDialog.js +4 -17
- package/lib/reuse/modules/ui5/errorDialog.js.map +1 -1
- package/lib/reuse/modules/ui5/footerBar.js +28 -63
- package/lib/reuse/modules/ui5/footerBar.js.map +1 -1
- package/lib/reuse/modules/ui5/mockserver.js +390 -427
- package/lib/reuse/modules/ui5/mockserver.js.map +1 -1
- package/lib/reuse/modules/ui5/navigation.js +105 -132
- package/lib/reuse/modules/ui5/navigation.js.map +1 -1
- package/lib/reuse/modules/ui5/navigationBar.js +58 -77
- package/lib/reuse/modules/ui5/navigationBar.js.map +1 -1
- package/lib/reuse/modules/ui5/qunit.js +16 -27
- package/lib/reuse/modules/ui5/qunit.js.map +1 -1
- package/lib/reuse/modules/ui5/session.js +200 -236
- package/lib/reuse/modules/ui5/session.js.map +1 -1
- package/lib/reuse/modules/ui5/table.js +79 -98
- package/lib/reuse/modules/ui5/table.js.map +1 -1
- package/lib/reuse/modules/ui5/userInteraction.js +264 -335
- package/lib/reuse/modules/ui5/userInteraction.js.map +1 -1
- package/lib/reuse/modules/util/browser.js +131 -178
- package/lib/reuse/modules/util/browser.js.map +1 -1
- package/lib/reuse/modules/util/data.js +3 -2
- package/lib/reuse/modules/util/data.js.map +1 -1
- package/lib/reuse/modules/util/file.js +71 -90
- package/lib/reuse/modules/util/file.js.map +1 -1
- package/lib/reuse/modules/util/function.js +68 -87
- package/lib/reuse/modules/util/function.js.map +1 -1
- package/lib/reuse/modules/util/system.js +22 -33
- package/lib/reuse/modules/util/system.js.map +1 -1
- package/lib/scripts/dataExchange/dataExchange.js +145 -160
- package/lib/scripts/dataExchange/dataExchange.js.map +1 -1
- package/lib/scripts/dataExchange/dataExchangeUtil.js +93 -114
- package/lib/scripts/dataExchange/dataExchangeUtil.js.map +1 -1
- package/lib/scripts/hooks/after.js +3 -14
- package/lib/scripts/hooks/after.js.map +1 -1
- package/lib/scripts/hooks/before.js +9 -20
- package/lib/scripts/hooks/before.js.map +1 -1
- package/lib/scripts/hooks/beforeSession.js +7 -18
- package/lib/scripts/hooks/beforeSession.js.map +1 -1
- package/lib/scripts/hooks/onComplete.js +2 -13
- package/lib/scripts/hooks/onComplete.js.map +1 -1
- package/lib/scripts/hooks/onPrepare.js +9 -20
- package/lib/scripts/hooks/onPrepare.js.map +1 -1
- package/lib/scripts/hooks/utils/addLocatorCommands.js +109 -172
- package/lib/scripts/hooks/utils/addLocatorCommands.js.map +1 -1
- package/lib/scripts/hooks/utils/browserLog.js +18 -31
- package/lib/scripts/hooks/utils/browserLog.js.map +1 -1
- package/lib/scripts/hooks/utils/dataExchangeCommands.js +13 -24
- package/lib/scripts/hooks/utils/dataExchangeCommands.js.map +1 -1
- package/lib/scripts/hooks/utils/decryption.d.ts +1 -1
- package/lib/scripts/hooks/utils/decryption.js +33 -14
- package/lib/scripts/hooks/utils/decryption.js.map +1 -1
- package/lib/scripts/hooks/utils/lib.js +249 -272
- package/lib/scripts/hooks/utils/lib.js.map +1 -1
- package/lib/scripts/hooks/utils/locatorCommands.js +154 -183
- package/lib/scripts/hooks/utils/locatorCommands.js.map +1 -1
- package/mkdocs.yml +16 -3
- package/package.json +14 -11
- package/test/authenticator/staticLogin/specs/custom.spec.js +30 -1
- package/test/reuse/nonUi5/element/getById.spec.js +17 -0
- package/test/reuse/service/odata/get.spec.js +61 -0
- package/test/reuse/service/odata/getEntitySet.spec.js +87 -0
- package/test/reuse/service/odata/test.odata.conf.js +15 -0
- package/test/reuse/ui5/confirmationDialog/clickButton.spec.js +87 -0
- package/test/reuse/ui5/confirmationDialog/test.confirmationDialog.conf.js +2 -1
- package/test/reuse/ui5/element/test.element.conf.js +2 -1
- package/test/reuse/ui5/element/waitForAll.spec.js +46 -0
- package/test/reuse/ui5/userInteraction/clearAndFillSmartFieldInputAndRetry.spec.js +28 -0
- package/test/reuse/ui5/userInteraction/test.userInteraction.conf.js +1 -0
- package/test/reuse/util/browser/switchToNewWindow.spec.js +2 -2
- package/test/reuse/util/console/console.spec.js +27 -0
- package/test/reuse/util/console/test.console.conf.js +12 -0
- package/test/reuse/util/data/data/test.secure.json +7 -3
- package/test/reuse/util/data/getSecureData.spec.js +9 -3
- package/test/reuse/util/file/pdfParser.spec.js +33 -8
- package/test/reuse/util/system/system.spec.js +16 -0
- package/test/reuse/util/system/test.system.conf.js +12 -0
- package/tsconfig.json +1 -1
|
@@ -1,13 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
3
|
exports.Table = void 0;
|
|
13
4
|
/**
|
|
@@ -32,23 +23,21 @@ class Table {
|
|
|
32
23
|
* };
|
|
33
24
|
* await ui5.table.sortColumnAscending("Amount", glAccountItemsTable);
|
|
34
25
|
*/
|
|
35
|
-
sortColumnAscending(columnName, tableSelector) {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
"metadata": "sap.m.Toolbar"
|
|
44
|
-
}
|
|
45
|
-
};
|
|
46
|
-
const sort = yield this._getSortIndicatorValue(columnName, tableSelector);
|
|
47
|
-
if (sort !== "Ascending") {
|
|
48
|
-
this._clickColumn(columnName, tableSelector);
|
|
49
|
-
yield ui5.userInteraction.click(sortButtonSelector);
|
|
26
|
+
async sortColumnAscending(columnName, tableSelector) {
|
|
27
|
+
const sortButtonSelector = {
|
|
28
|
+
"elementProperties": {
|
|
29
|
+
"metadata": "sap.m.Button",
|
|
30
|
+
"icon": "sap-icon://sort-ascending"
|
|
31
|
+
},
|
|
32
|
+
"ancestorProperties": {
|
|
33
|
+
"metadata": "sap.m.Toolbar"
|
|
50
34
|
}
|
|
51
|
-
}
|
|
35
|
+
};
|
|
36
|
+
const sort = await this._getSortIndicatorValue(columnName, tableSelector);
|
|
37
|
+
if (sort !== "Ascending") {
|
|
38
|
+
this._clickColumn(columnName, tableSelector);
|
|
39
|
+
await ui5.userInteraction.click(sortButtonSelector);
|
|
40
|
+
}
|
|
52
41
|
}
|
|
53
42
|
;
|
|
54
43
|
/**
|
|
@@ -67,23 +56,21 @@ class Table {
|
|
|
67
56
|
* };
|
|
68
57
|
* await ui5.table.sortColumnDescending("Amount", glAccountItemsTable);
|
|
69
58
|
*/
|
|
70
|
-
sortColumnDescending(columnName, tableSelector) {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
"metadata": "sap.m.Toolbar"
|
|
79
|
-
}
|
|
80
|
-
};
|
|
81
|
-
const sort = yield this._getSortIndicatorValue(columnName, tableSelector);
|
|
82
|
-
if (sort !== "Descending") {
|
|
83
|
-
this._clickColumn(columnName, tableSelector);
|
|
84
|
-
yield ui5.userInteraction.click(sortButtonSelector);
|
|
59
|
+
async sortColumnDescending(columnName, tableSelector) {
|
|
60
|
+
const sortButtonSelector = {
|
|
61
|
+
"elementProperties": {
|
|
62
|
+
"metadata": "sap.m.Button",
|
|
63
|
+
"icon": "sap-icon://sort-descending"
|
|
64
|
+
},
|
|
65
|
+
"ancestorProperties": {
|
|
66
|
+
"metadata": "sap.m.Toolbar"
|
|
85
67
|
}
|
|
86
|
-
}
|
|
68
|
+
};
|
|
69
|
+
const sort = await this._getSortIndicatorValue(columnName, tableSelector);
|
|
70
|
+
if (sort !== "Descending") {
|
|
71
|
+
this._clickColumn(columnName, tableSelector);
|
|
72
|
+
await ui5.userInteraction.click(sortButtonSelector);
|
|
73
|
+
}
|
|
87
74
|
}
|
|
88
75
|
;
|
|
89
76
|
/**
|
|
@@ -101,70 +88,64 @@ class Table {
|
|
|
101
88
|
* };
|
|
102
89
|
* await ui5.table.clickSettingsButton(glAccountItemsTable);
|
|
103
90
|
*/
|
|
104
|
-
clickSettingsButton(tableSelector) {
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
"
|
|
108
|
-
|
|
109
|
-
"id": "*btnPersonalisation"
|
|
110
|
-
}
|
|
111
|
-
};
|
|
112
|
-
if (!tableSelector) {
|
|
113
|
-
yield ui5.userInteraction.click(settingsButtonSelector);
|
|
91
|
+
async clickSettingsButton(tableSelector) {
|
|
92
|
+
const settingsButtonSelector = {
|
|
93
|
+
"elementProperties": {
|
|
94
|
+
"metadata": "sap.m.OverflowToolbarButton",
|
|
95
|
+
"id": "*btnPersonalisation"
|
|
114
96
|
}
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
97
|
+
};
|
|
98
|
+
if (!tableSelector) {
|
|
99
|
+
await ui5.userInteraction.click(settingsButtonSelector);
|
|
100
|
+
}
|
|
101
|
+
else {
|
|
102
|
+
const selector = this._prepareAncestorSelector(settingsButtonSelector, tableSelector);
|
|
103
|
+
await ui5.userInteraction.click(selector);
|
|
104
|
+
}
|
|
120
105
|
}
|
|
121
106
|
;
|
|
122
107
|
// =================================== HELPER ===================================
|
|
123
|
-
_clickColumn(name, tableSelector) {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
"
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
"
|
|
130
|
-
"text": name
|
|
131
|
-
}
|
|
132
|
-
};
|
|
133
|
-
if (!tableSelector) {
|
|
134
|
-
yield ui5.userInteraction.click(tableColumnSelector);
|
|
135
|
-
}
|
|
136
|
-
if (typeof tableSelector == "number") {
|
|
137
|
-
util.console.warn(`Usage of argument 'index' in function ${arguments.callee.caller.name} is deprecated. Please pass a valid table selector instead.`);
|
|
138
|
-
yield ui5.userInteraction.click(tableColumnSelector, tableSelector);
|
|
108
|
+
async _clickColumn(name, tableSelector) {
|
|
109
|
+
const tableColumnSelector = {
|
|
110
|
+
"elementProperties": {
|
|
111
|
+
"metadata": "sap.m.Column"
|
|
112
|
+
},
|
|
113
|
+
"descendantProperties": {
|
|
114
|
+
"text": name
|
|
139
115
|
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
116
|
+
};
|
|
117
|
+
if (!tableSelector) {
|
|
118
|
+
await ui5.userInteraction.click(tableColumnSelector);
|
|
119
|
+
}
|
|
120
|
+
if (typeof tableSelector == "number") {
|
|
121
|
+
util.console.warn(`Usage of argument 'index' in function ${arguments.callee.caller.name} is deprecated. Please pass a valid table selector instead.`);
|
|
122
|
+
await ui5.userInteraction.click(tableColumnSelector, tableSelector);
|
|
123
|
+
}
|
|
124
|
+
else if (typeof tableSelector === "object") {
|
|
125
|
+
const selector = this._prepareAncestorSelector(tableColumnSelector, tableSelector);
|
|
126
|
+
await ui5.userInteraction.click(selector);
|
|
127
|
+
}
|
|
145
128
|
}
|
|
146
|
-
_getSortIndicatorValue(name, tableSelector) {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
"
|
|
153
|
-
"text": name
|
|
154
|
-
}
|
|
155
|
-
};
|
|
156
|
-
if (!tableSelector) {
|
|
157
|
-
return ui5.element.getPropertyValue(tableColumnSelector, "sortIndicator");
|
|
158
|
-
}
|
|
159
|
-
if (typeof tableSelector == "number") {
|
|
160
|
-
util.console.warn(`The usage of argument 'index' in function ${arguments.callee.caller.name} is deprecated. Please pass a valid table selector instead.`);
|
|
161
|
-
return ui5.element.getPropertyValue(tableColumnSelector, "sortIndicator", tableSelector);
|
|
162
|
-
}
|
|
163
|
-
else if (typeof tableSelector === "object") {
|
|
164
|
-
const selector = this._prepareAncestorSelector(tableColumnSelector, tableSelector);
|
|
165
|
-
return ui5.element.getPropertyValue(selector, "sortIndicator");
|
|
129
|
+
async _getSortIndicatorValue(name, tableSelector) {
|
|
130
|
+
const tableColumnSelector = {
|
|
131
|
+
"elementProperties": {
|
|
132
|
+
"metadata": "sap.m.Column"
|
|
133
|
+
},
|
|
134
|
+
"descendantProperties": {
|
|
135
|
+
"text": name
|
|
166
136
|
}
|
|
167
|
-
}
|
|
137
|
+
};
|
|
138
|
+
if (!tableSelector) {
|
|
139
|
+
return ui5.element.getPropertyValue(tableColumnSelector, "sortIndicator");
|
|
140
|
+
}
|
|
141
|
+
if (typeof tableSelector == "number") {
|
|
142
|
+
util.console.warn(`The usage of argument 'index' in function ${arguments.callee.caller.name} is deprecated. Please pass a valid table selector instead.`);
|
|
143
|
+
return ui5.element.getPropertyValue(tableColumnSelector, "sortIndicator", tableSelector);
|
|
144
|
+
}
|
|
145
|
+
else if (typeof tableSelector === "object") {
|
|
146
|
+
const selector = this._prepareAncestorSelector(tableColumnSelector, tableSelector);
|
|
147
|
+
return ui5.element.getPropertyValue(selector, "sortIndicator");
|
|
148
|
+
}
|
|
168
149
|
}
|
|
169
150
|
_prepareAncestorSelector(selector, ancestorSelector) {
|
|
170
151
|
if ("elementProperties" in ancestorSelector) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.js","sourceRoot":"","sources":["../../../../src/reuse/modules/ui5/table.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC
|
|
1
|
+
{"version":3,"file":"table.js","sourceRoot":"","sources":["../../../../src/reuse/modules/ui5/table.ts"],"names":[],"mappings":"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"}
|