@wdio/protocols 9.0.0-alpha.78 → 9.0.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/build/commands/selenium.d.ts +24 -0
- package/build/commands/selenium.d.ts.map +1 -1
- package/build/commands/webdriver.d.ts +6 -6
- package/build/commands/webdriver.d.ts.map +1 -1
- package/build/index.js +5707 -16
- package/build/protocols/selenium.d.ts +35 -0
- package/build/protocols/selenium.d.ts.map +1 -1
- package/build/protocols/webdriver.d.ts +15 -6
- package/build/protocols/webdriver.d.ts.map +1 -1
- package/build/protocols/webdriverBidi.d.ts +120 -4
- package/build/protocols/webdriverBidi.d.ts.map +1 -1
- package/build/types.d.ts +8 -0
- package/build/types.d.ts.map +1 -1
- package/package.json +6 -4
- package/build/commands/appium.js +0 -1
- package/build/commands/chromium.js +0 -1
- package/build/commands/gecko.js +0 -1
- package/build/commands/mjsonwp.js +0 -1
- package/build/commands/saucelabs.js +0 -1
- package/build/commands/selenium.js +0 -1
- package/build/commands/webdriver.js +0 -1
- package/build/protocols/appium.js +0 -2191
- package/build/protocols/chromium.js +0 -530
- package/build/protocols/gecko.js +0 -112
- package/build/protocols/mjsonwp.js +0 -91
- package/build/protocols/saucelabs.js +0 -297
- package/build/protocols/selenium.js +0 -132
- package/build/protocols/webdriver.js +0 -1542
- package/build/protocols/webdriverBidi.js +0 -612
- package/build/types.js +0 -1
- package/tsconfig.prod.json +0 -12
- /package/{LICENSE-MIT → LICENSE} +0 -0
|
@@ -17,6 +17,41 @@ declare const _default: {
|
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
+
'/session/:sessionId/se/files': {
|
|
21
|
+
GET: {
|
|
22
|
+
command: string;
|
|
23
|
+
description: string;
|
|
24
|
+
ref: string;
|
|
25
|
+
parameters: never[];
|
|
26
|
+
returns: {
|
|
27
|
+
type: string;
|
|
28
|
+
name: string;
|
|
29
|
+
description: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
POST: {
|
|
33
|
+
command: string;
|
|
34
|
+
description: string;
|
|
35
|
+
ref: string;
|
|
36
|
+
parameters: {
|
|
37
|
+
name: string;
|
|
38
|
+
type: string;
|
|
39
|
+
description: string;
|
|
40
|
+
required: boolean;
|
|
41
|
+
}[];
|
|
42
|
+
returns: {
|
|
43
|
+
type: string;
|
|
44
|
+
name: string;
|
|
45
|
+
description: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
DELETE: {
|
|
49
|
+
command: string;
|
|
50
|
+
description: string;
|
|
51
|
+
ref: string;
|
|
52
|
+
parameters: never[];
|
|
53
|
+
};
|
|
54
|
+
};
|
|
20
55
|
'/grid/api/hub/': {
|
|
21
56
|
GET: {
|
|
22
57
|
isHubCommand: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"selenium.d.ts","sourceRoot":"","sources":["../../src/protocols/selenium.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"selenium.d.ts","sourceRoot":"","sources":["../../src/protocols/selenium.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAwLC"}
|
|
@@ -95,11 +95,6 @@ declare const _default: {
|
|
|
95
95
|
}[];
|
|
96
96
|
exampleReferences: string[];
|
|
97
97
|
alternativeCommands: string[];
|
|
98
|
-
returns: {
|
|
99
|
-
type: string;
|
|
100
|
-
name: string;
|
|
101
|
-
description: string;
|
|
102
|
-
};
|
|
103
98
|
};
|
|
104
99
|
};
|
|
105
100
|
'/session/:sessionId/back': {
|
|
@@ -1078,6 +1073,11 @@ declare const _default: {
|
|
|
1078
1073
|
description: string;
|
|
1079
1074
|
required: boolean;
|
|
1080
1075
|
}[];
|
|
1076
|
+
returns: {
|
|
1077
|
+
type: string;
|
|
1078
|
+
name: string;
|
|
1079
|
+
description: string;
|
|
1080
|
+
};
|
|
1081
1081
|
};
|
|
1082
1082
|
};
|
|
1083
1083
|
'/session/:sessionId/webauthn/authenticator/:authenticatorId': {
|
|
@@ -1097,6 +1097,10 @@ declare const _default: {
|
|
|
1097
1097
|
command: string;
|
|
1098
1098
|
description: string;
|
|
1099
1099
|
ref: string;
|
|
1100
|
+
variables: {
|
|
1101
|
+
name: string;
|
|
1102
|
+
description: string;
|
|
1103
|
+
}[];
|
|
1100
1104
|
parameters: {
|
|
1101
1105
|
name: string;
|
|
1102
1106
|
type: string;
|
|
@@ -1115,6 +1119,11 @@ declare const _default: {
|
|
|
1115
1119
|
description: string;
|
|
1116
1120
|
}[];
|
|
1117
1121
|
parameters: never[];
|
|
1122
|
+
returns: {
|
|
1123
|
+
type: string;
|
|
1124
|
+
name: string;
|
|
1125
|
+
description: string;
|
|
1126
|
+
};
|
|
1118
1127
|
};
|
|
1119
1128
|
DELETE: {
|
|
1120
1129
|
command: string;
|
|
@@ -1139,7 +1148,7 @@ declare const _default: {
|
|
|
1139
1148
|
parameters: never[];
|
|
1140
1149
|
};
|
|
1141
1150
|
};
|
|
1142
|
-
'/session/:sessionId/webauthn/authenticator/:authenticatorId/
|
|
1151
|
+
'/session/:sessionId/webauthn/authenticator/:authenticatorId/uv': {
|
|
1143
1152
|
POST: {
|
|
1144
1153
|
command: string;
|
|
1145
1154
|
description: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webdriver.d.ts","sourceRoot":"","sources":["../../src/protocols/webdriver.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"webdriver.d.ts","sourceRoot":"","sources":["../../src/protocols/webdriver.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAyrDC"}
|
|
@@ -81,7 +81,7 @@ declare const protocol: {
|
|
|
81
81
|
readonly returns: {
|
|
82
82
|
readonly type: "Object";
|
|
83
83
|
readonly name: "local.SessionNewResult";
|
|
84
|
-
readonly description: "Command return value with the following interface:\n ```ts\n {\n sessionId: string;\n capabilities: {\n acceptInsecureCerts: boolean;\n browserName: string;\n browserVersion: string;\n platformName: string;\n
|
|
84
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n sessionId: string;\n capabilities: {\n acceptInsecureCerts: boolean;\n browserName: string;\n browserVersion: string;\n platformName: string;\n setWindowRect: boolean;\n userAgent: string;\n proxy?: SessionProxyConfiguration;\n webSocketUrl?: string;\n };\n }\n ```";
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
87
|
};
|
|
@@ -137,6 +137,55 @@ declare const protocol: {
|
|
|
137
137
|
}];
|
|
138
138
|
};
|
|
139
139
|
};
|
|
140
|
+
readonly "browser.createUserContext": {
|
|
141
|
+
readonly socket: {
|
|
142
|
+
readonly command: "browserCreateUserContext";
|
|
143
|
+
readonly description: "WebDriver Bidi command to send command method \"browser.createUserContext\" with parameters.";
|
|
144
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browser-createUserContext";
|
|
145
|
+
readonly parameters: readonly [{
|
|
146
|
+
readonly name: "params";
|
|
147
|
+
readonly type: "`remote.EmptyParams`";
|
|
148
|
+
readonly description: "<pre>\\{\\}</pre>";
|
|
149
|
+
readonly required: true;
|
|
150
|
+
}];
|
|
151
|
+
readonly returns: {
|
|
152
|
+
readonly type: "Object";
|
|
153
|
+
readonly name: "local.BrowserCreateUserContextResult";
|
|
154
|
+
readonly description: "Command return value with the following interface:\n ```ts\n ;\n ```";
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
readonly "browser.getUserContexts": {
|
|
159
|
+
readonly socket: {
|
|
160
|
+
readonly command: "browserGetUserContexts";
|
|
161
|
+
readonly description: "WebDriver Bidi command to send command method \"browser.getUserContexts\" with parameters.";
|
|
162
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browser-getUserContexts";
|
|
163
|
+
readonly parameters: readonly [{
|
|
164
|
+
readonly name: "params";
|
|
165
|
+
readonly type: "`remote.EmptyParams`";
|
|
166
|
+
readonly description: "<pre>\\{\\}</pre>";
|
|
167
|
+
readonly required: true;
|
|
168
|
+
}];
|
|
169
|
+
readonly returns: {
|
|
170
|
+
readonly type: "Object";
|
|
171
|
+
readonly name: "local.BrowserGetUserContextsResult";
|
|
172
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n userContexts: BrowserUserContextInfo[];\n }\n ```";
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
readonly "browser.removeUserContext": {
|
|
177
|
+
readonly socket: {
|
|
178
|
+
readonly command: "browserRemoveUserContext";
|
|
179
|
+
readonly description: "WebDriver Bidi command to send command method \"browser.removeUserContext\" with parameters.";
|
|
180
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-browser-removeUserContext";
|
|
181
|
+
readonly parameters: readonly [{
|
|
182
|
+
readonly name: "params";
|
|
183
|
+
readonly type: "`remote.BrowserRemoveUserContextParameters`";
|
|
184
|
+
readonly description: "<pre>\\{<br /> userContext: BrowserUserContext;<br />\\}</pre>";
|
|
185
|
+
readonly required: true;
|
|
186
|
+
}];
|
|
187
|
+
};
|
|
188
|
+
};
|
|
140
189
|
readonly "browsingContext.activate": {
|
|
141
190
|
readonly socket: {
|
|
142
191
|
readonly command: "browsingContextActivate";
|
|
@@ -189,7 +238,7 @@ declare const protocol: {
|
|
|
189
238
|
readonly parameters: readonly [{
|
|
190
239
|
readonly name: "params";
|
|
191
240
|
readonly type: "`remote.BrowsingContextCreateParameters`";
|
|
192
|
-
readonly description: "<pre>\\{<br /> type: BrowsingContextCreateType;<br /> referenceContext?: BrowsingContextBrowsingContext;<br /> background?: boolean;<br />\\}</pre>";
|
|
241
|
+
readonly description: "<pre>\\{<br /> type: BrowsingContextCreateType;<br /> referenceContext?: BrowsingContextBrowsingContext;<br /> background?: boolean;<br /> userContext?: BrowserUserContext;<br />\\}</pre>";
|
|
193
242
|
readonly required: true;
|
|
194
243
|
}];
|
|
195
244
|
readonly returns: {
|
|
@@ -238,7 +287,7 @@ declare const protocol: {
|
|
|
238
287
|
readonly parameters: readonly [{
|
|
239
288
|
readonly name: "params";
|
|
240
289
|
readonly type: "`remote.BrowsingContextLocateNodesParameters`";
|
|
241
|
-
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> locator: BrowsingContextLocator;<br /> maxNodeCount?: JsUint;<br />
|
|
290
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> locator: BrowsingContextLocator;<br /> maxNodeCount?: JsUint;<br /> serializationOptions?: ScriptSerializationOptions;<br /> startNodes?: ScriptSharedReference[];<br />\\}</pre>";
|
|
242
291
|
readonly required: true;
|
|
243
292
|
}];
|
|
244
293
|
readonly returns: {
|
|
@@ -331,7 +380,7 @@ declare const protocol: {
|
|
|
331
380
|
readonly parameters: readonly [{
|
|
332
381
|
readonly name: "params";
|
|
333
382
|
readonly type: "`remote.NetworkAddInterceptParameters`";
|
|
334
|
-
readonly description: "<pre>\\{<br /> phases: NetworkInterceptPhase[];<br /> urlPatterns?: NetworkUrlPattern[];<br />\\}</pre>";
|
|
383
|
+
readonly description: "<pre>\\{<br /> phases: NetworkInterceptPhase[];<br /> contexts?: BrowsingContextBrowsingContext[];<br /> urlPatterns?: NetworkUrlPattern[];<br />\\}</pre>";
|
|
335
384
|
readonly required: true;
|
|
336
385
|
}];
|
|
337
386
|
readonly returns: {
|
|
@@ -512,6 +561,60 @@ declare const protocol: {
|
|
|
512
561
|
}];
|
|
513
562
|
};
|
|
514
563
|
};
|
|
564
|
+
readonly "storage.getCookies": {
|
|
565
|
+
readonly socket: {
|
|
566
|
+
readonly command: "storageGetCookies";
|
|
567
|
+
readonly description: "WebDriver Bidi command to send command method \"storage.getCookies\" with parameters.";
|
|
568
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-storage-getCookies";
|
|
569
|
+
readonly parameters: readonly [{
|
|
570
|
+
readonly name: "params";
|
|
571
|
+
readonly type: "`remote.StorageGetCookiesParameters`";
|
|
572
|
+
readonly description: "<pre>\\{<br /> filter?: StorageCookieFilter;<br /> partition?: StoragePartitionDescriptor;<br />\\}</pre>";
|
|
573
|
+
readonly required: true;
|
|
574
|
+
}];
|
|
575
|
+
readonly returns: {
|
|
576
|
+
readonly type: "Object";
|
|
577
|
+
readonly name: "local.StorageGetCookiesResult";
|
|
578
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n cookies: NetworkCookie[];\n partitionKey: StoragePartitionKey;\n }\n ```";
|
|
579
|
+
};
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
readonly "storage.setCookie": {
|
|
583
|
+
readonly socket: {
|
|
584
|
+
readonly command: "storageSetCookie";
|
|
585
|
+
readonly description: "WebDriver Bidi command to send command method \"storage.setCookie\" with parameters.";
|
|
586
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-storage-setCookie";
|
|
587
|
+
readonly parameters: readonly [{
|
|
588
|
+
readonly name: "params";
|
|
589
|
+
readonly type: "`remote.StorageSetCookieParameters`";
|
|
590
|
+
readonly description: "<pre>\\{<br /> cookie: StoragePartialCookie;<br /> partition?: StoragePartitionDescriptor;<br />\\}</pre>";
|
|
591
|
+
readonly required: true;
|
|
592
|
+
}];
|
|
593
|
+
readonly returns: {
|
|
594
|
+
readonly type: "Object";
|
|
595
|
+
readonly name: "local.StorageSetCookieResult";
|
|
596
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n partitionKey: StoragePartitionKey;\n }\n ```";
|
|
597
|
+
};
|
|
598
|
+
};
|
|
599
|
+
};
|
|
600
|
+
readonly "storage.deleteCookies": {
|
|
601
|
+
readonly socket: {
|
|
602
|
+
readonly command: "storageDeleteCookies";
|
|
603
|
+
readonly description: "WebDriver Bidi command to send command method \"storage.deleteCookies\" with parameters.";
|
|
604
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-storage-deleteCookies";
|
|
605
|
+
readonly parameters: readonly [{
|
|
606
|
+
readonly name: "params";
|
|
607
|
+
readonly type: "`remote.StorageDeleteCookiesParameters`";
|
|
608
|
+
readonly description: "<pre>\\{<br /> filter?: StorageCookieFilter;<br /> partition?: StoragePartitionDescriptor;<br />\\}</pre>";
|
|
609
|
+
readonly required: true;
|
|
610
|
+
}];
|
|
611
|
+
readonly returns: {
|
|
612
|
+
readonly type: "Object";
|
|
613
|
+
readonly name: "local.StorageDeleteCookiesResult";
|
|
614
|
+
readonly description: "Command return value with the following interface:\n ```ts\n {\n partitionKey: StoragePartitionKey;\n }\n ```";
|
|
615
|
+
};
|
|
616
|
+
};
|
|
617
|
+
};
|
|
515
618
|
readonly "input.performActions": {
|
|
516
619
|
readonly socket: {
|
|
517
620
|
readonly command: "inputPerformActions";
|
|
@@ -538,6 +641,19 @@ declare const protocol: {
|
|
|
538
641
|
}];
|
|
539
642
|
};
|
|
540
643
|
};
|
|
644
|
+
readonly "input.setFiles": {
|
|
645
|
+
readonly socket: {
|
|
646
|
+
readonly command: "inputSetFiles";
|
|
647
|
+
readonly description: "WebDriver Bidi command to send command method \"input.setFiles\" with parameters.";
|
|
648
|
+
readonly ref: "https://w3c.github.io/webdriver-bidi/#command-input-setFiles";
|
|
649
|
+
readonly parameters: readonly [{
|
|
650
|
+
readonly name: "params";
|
|
651
|
+
readonly type: "`remote.InputSetFilesParameters`";
|
|
652
|
+
readonly description: "<pre>\\{<br /> context: BrowsingContextBrowsingContext;<br /> element: ScriptSharedReference;<br /> files: string[];<br />\\}</pre>";
|
|
653
|
+
readonly required: true;
|
|
654
|
+
}];
|
|
655
|
+
};
|
|
656
|
+
};
|
|
541
657
|
};
|
|
542
658
|
export default protocol;
|
|
543
659
|
//# sourceMappingURL=webdriverBidi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webdriverBidi.d.ts","sourceRoot":"","sources":["../../src/protocols/webdriverBidi.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,QAAA,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"webdriverBidi.d.ts","sourceRoot":"","sources":["../../src/protocols/webdriverBidi.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAstBJ,CAAA;AACV,eAAe,QAAQ,CAAA"}
|
package/build/types.d.ts
CHANGED
|
@@ -15,6 +15,14 @@ export interface WindowHandle {
|
|
|
15
15
|
handle: string;
|
|
16
16
|
type: string;
|
|
17
17
|
}
|
|
18
|
+
export interface Credential {
|
|
19
|
+
credentialId: string;
|
|
20
|
+
isResidentCredential: boolean;
|
|
21
|
+
rpId: string;
|
|
22
|
+
privateKey: string;
|
|
23
|
+
userHandle: string;
|
|
24
|
+
signCount: number;
|
|
25
|
+
}
|
|
18
26
|
export interface RectReturn {
|
|
19
27
|
x: number;
|
|
20
28
|
y: number;
|
package/build/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/protocols",
|
|
3
|
-
"version": "9.0.0
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Utility package providing information about automation protocols",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-protocols",
|
|
@@ -8,8 +8,10 @@
|
|
|
8
8
|
"type": "module",
|
|
9
9
|
"types": "./build/index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
|
-
".":
|
|
12
|
-
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./build/index.js",
|
|
13
|
+
"types": "./build/index.d.ts"
|
|
14
|
+
}
|
|
13
15
|
},
|
|
14
16
|
"typeScriptVersion": "3.8.3",
|
|
15
17
|
"repository": {
|
|
@@ -27,5 +29,5 @@
|
|
|
27
29
|
"publishConfig": {
|
|
28
30
|
"access": "public"
|
|
29
31
|
},
|
|
30
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "957693463371a4cb329395dcdbce8fb0c930ab93"
|
|
31
33
|
}
|
package/build/commands/appium.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/build/commands/gecko.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|