@sap_oss/wdio-qmate-service 3.3.8 → 3.3.9
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export type
|
|
1
|
+
export type QmateSelector = Ui5Selector | Ui5DynamicSelector | CssSelector | CssDynamicSelector;
|
|
2
|
+
export type QmateSelectors = Record<string, QmateSelector>;
|
|
2
3
|
export interface Ui5Selector {
|
|
3
4
|
elementProperties: ElementProperties | Ui5Selector;
|
|
4
5
|
ancestorProperties?: ElementProperties | Ui5Selector;
|
|
@@ -12,10 +13,10 @@ export interface Ui5Selector {
|
|
|
12
13
|
export type Ui5DynamicSelector = (...args: Array<any>) => Ui5Selector;
|
|
13
14
|
export interface ElementProperties {
|
|
14
15
|
viewName?: string;
|
|
15
|
-
metadata
|
|
16
|
+
metadata?: Ui5ControlMetadata;
|
|
16
17
|
[key: string]: any;
|
|
17
18
|
}
|
|
18
|
-
export type Ui5ControlMetadata =
|
|
19
|
+
export type Ui5ControlMetadata = string;
|
|
19
20
|
export type Ui5SelectorWithOptions = {
|
|
20
21
|
selector: Ui5Selector;
|
|
21
22
|
index?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap_oss/wdio-qmate-service",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.9",
|
|
4
4
|
"author": "SAP SE",
|
|
5
5
|
"types": "./@types/index.d.ts",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -139,7 +139,6 @@
|
|
|
139
139
|
"deepmerge": "^4.3.1",
|
|
140
140
|
"fs-extra": "^11.3.1",
|
|
141
141
|
"node-localstorage": "^3.0.5",
|
|
142
|
-
"path": "^0.12.7",
|
|
143
142
|
"pdf-parse": "^1.1.1",
|
|
144
143
|
"qcrypt": "file:packages/qcrypt",
|
|
145
144
|
"query-string": "^9.2.2",
|