@appium/types 1.0.0 → 1.1.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.
Files changed (64) hide show
  1. package/build/lib/capabilities.d.ts +1 -2
  2. package/build/lib/capabilities.d.ts.map +1 -1
  3. package/build/lib/{command.d.ts → command-maps.d.ts} +1 -1
  4. package/build/lib/command-maps.d.ts.map +1 -0
  5. package/build/lib/command-maps.js +4 -0
  6. package/build/lib/command-maps.js.map +1 -0
  7. package/build/lib/commands/appium.d.ts +100 -0
  8. package/build/lib/commands/appium.d.ts.map +1 -0
  9. package/build/lib/{command.js → commands/appium.js} +1 -2
  10. package/build/lib/commands/appium.js.map +1 -0
  11. package/build/lib/commands/basedriver.d.ts +370 -0
  12. package/build/lib/commands/basedriver.d.ts.map +1 -0
  13. package/build/lib/commands/basedriver.js +3 -0
  14. package/build/lib/commands/basedriver.js.map +1 -0
  15. package/build/lib/commands/index.d.ts +7 -0
  16. package/build/lib/commands/index.d.ts.map +1 -0
  17. package/build/lib/commands/index.js +23 -0
  18. package/build/lib/commands/index.js.map +1 -0
  19. package/build/lib/commands/jsonwp.d.ts +37 -0
  20. package/build/lib/commands/jsonwp.d.ts.map +1 -0
  21. package/build/lib/commands/jsonwp.js +3 -0
  22. package/build/lib/commands/jsonwp.js.map +1 -0
  23. package/build/lib/commands/mjsonwp.d.ts +65 -0
  24. package/build/lib/commands/mjsonwp.d.ts.map +1 -0
  25. package/build/lib/commands/mjsonwp.js +3 -0
  26. package/build/lib/commands/mjsonwp.js.map +1 -0
  27. package/build/lib/commands/other-protocols.d.ts +300 -0
  28. package/build/lib/commands/other-protocols.d.ts.map +1 -0
  29. package/build/lib/commands/other-protocols.js +3 -0
  30. package/build/lib/commands/other-protocols.js.map +1 -0
  31. package/build/lib/commands/webdriver.d.ts +443 -0
  32. package/build/lib/commands/webdriver.d.ts.map +1 -0
  33. package/build/lib/commands/webdriver.js +3 -0
  34. package/build/lib/commands/webdriver.js.map +1 -0
  35. package/build/lib/constraints.d.ts +19 -0
  36. package/build/lib/constraints.d.ts.map +1 -1
  37. package/build/lib/constraints.js.map +1 -1
  38. package/build/lib/driver.d.ts +9 -1056
  39. package/build/lib/driver.d.ts.map +1 -1
  40. package/build/lib/index.d.ts +2 -1
  41. package/build/lib/index.d.ts.map +1 -1
  42. package/build/lib/index.js +2 -1
  43. package/build/lib/index.js.map +1 -1
  44. package/build/lib/plugin.d.ts +1 -1
  45. package/build/lib/plugin.d.ts.map +1 -1
  46. package/build/lib/standard-caps.d.ts +8 -0
  47. package/build/lib/standard-caps.d.ts.map +1 -1
  48. package/lib/capabilities.ts +1 -2
  49. package/lib/commands/appium.ts +115 -0
  50. package/lib/commands/basedriver.ts +476 -0
  51. package/lib/commands/index.ts +6 -0
  52. package/lib/commands/jsonwp.ts +41 -0
  53. package/lib/commands/mjsonwp.ts +71 -0
  54. package/lib/commands/other-protocols.ts +387 -0
  55. package/lib/commands/webdriver.ts +511 -0
  56. package/lib/constraints.ts +18 -1
  57. package/lib/driver.ts +25 -1279
  58. package/lib/index.ts +2 -1
  59. package/lib/plugin.ts +1 -1
  60. package/lib/standard-caps.ts +8 -0
  61. package/package.json +5 -5
  62. package/build/lib/command.d.ts.map +0 -1
  63. package/build/lib/command.js.map +0 -1
  64. /package/lib/{command.ts → command-maps.ts} +0 -0
@@ -0,0 +1,65 @@
1
+ /**
2
+ * Interface for all MJSONWP commands proxied to the external driver.
3
+ */
4
+ export interface IMJSONWPCommands<Ctx = string> {
5
+ /**
6
+ * Get the currently active context
7
+ * @see {@link https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#webviews-and-other-contexts}
8
+ *
9
+ * @returns The context name
10
+ */
11
+ getCurrentContext?(): Promise<Ctx | null>;
12
+ /**
13
+ * Switch to a context by name
14
+ * @see {@link https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#webviews-and-other-contexts}
15
+ *
16
+ * @param name - the context name
17
+ */
18
+ setContext?(name: string, ...args: any[]): Promise<void>;
19
+ /**
20
+ * Get the list of available contexts
21
+ * @see {@link https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#webviews-and-other-contexts}
22
+ *
23
+ * @returns The list of context names
24
+ */
25
+ getContexts?(): Promise<Ctx[]>;
26
+ /**
27
+ * Get the network connection state of a device
28
+ * @see {@link https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#device-modes}
29
+ *
30
+ * @returns A number which is a bitmask representing categories like Data, Wifi, and Airplane
31
+ * mode status
32
+ */
33
+ getNetworkConnection?(): Promise<number>;
34
+ /**
35
+ * Set the network connection of the device
36
+ * @see {@link https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#device-modes}
37
+ *
38
+ * @param type - the bitmask representing network state
39
+ * @returns A number which is a bitmask representing categories like Data, Wifi, and Airplane
40
+ * mode status
41
+ */
42
+ setNetworkConnection?(type: number): Promise<number>;
43
+ /**
44
+ * Get the current rotation state of the device
45
+ * @see {@link https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#device-rotation}
46
+ *
47
+ * @returns The Rotation object consisting of x, y, and z rotation values (0 <= n <= 360)
48
+ */
49
+ getRotation?(): Promise<Rotation>;
50
+ /**
51
+ * Set the device rotation state
52
+ * @see {@link https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#device-rotation}
53
+ *
54
+ * @param x - the degree to which the device is rotated around the x axis (0 <= x <= 360)
55
+ * @param y - the degree to which the device is rotated around the y axis (0 <= y <= 360)
56
+ * @param z - the degree to which the device is rotated around the z axis (0 <= z <= 360)
57
+ */
58
+ setRotation?(x: number, y: number, z: number): Promise<void>;
59
+ }
60
+ export interface Rotation {
61
+ x: number;
62
+ y: number;
63
+ z: number;
64
+ }
65
+ //# sourceMappingURL=mjsonwp.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mjsonwp.d.ts","sourceRoot":"","sources":["../../../lib/commands/mjsonwp.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gBAAgB,CAAC,GAAG,GAAG,MAAM;IAC5C;;;;;OAKG;IACH,iBAAiB,CAAC,IAAI,OAAO,CAAC,GAAG,GAAG,IAAI,CAAC,CAAC;IAE1C;;;;;OAKG;IACH,UAAU,CAAC,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEzD;;;;;OAKG;IACH,WAAW,CAAC,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;IAE/B;;;;;;OAMG;IACH,oBAAoB,CAAC,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;IAEzC;;;;;;;OAOG;IACH,oBAAoB,CAAC,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAErD;;;;;OAKG;IACH,WAAW,CAAC,IAAI,OAAO,CAAC,QAAQ,CAAC,CAAC;IAElC;;;;;;;OAOG;IACH,WAAW,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAC9D;AAED,MAAM,WAAW,QAAQ;IACvB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=mjsonwp.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mjsonwp.js","sourceRoot":"","sources":["../../../lib/commands/mjsonwp.ts"],"names":[],"mappings":""}
@@ -0,0 +1,300 @@
1
+ /**
2
+ * Interface for all WebDriver extension commands from other protocols proxied to the external driver.
3
+ */
4
+ export interface IOtherProtocolCommands {
5
+ /**
6
+ * Chromium DevTools
7
+ */
8
+ /**
9
+ * Execute a devtools command
10
+ *
11
+ * @param cmd - the command
12
+ * @param params - any command-specific command parameters
13
+ *
14
+ * @returns The result of the command execution
15
+ */
16
+ executeCdp?(cmd: string, params: unknown): Promise<unknown>;
17
+ /**
18
+ * Permissions
19
+ */
20
+ /**
21
+ * Set the permission state of a PermissionDescriptor
22
+ * @see {@link https://www.w3.org/TR/permissions/#webdriver-command-set-permission}
23
+ *
24
+ * @param descriptor - the PermissionDescriptor
25
+ * @param state - the new state
26
+ */
27
+ setPermissions?(descriptor: PermissionDescriptor, state: PermissionState): Promise<void>;
28
+ /**
29
+ * Reporting
30
+ */
31
+ /**
32
+ * Generate a test report for registered observers
33
+ * @see {@link https://www.w3.org/TR/reporting-1/#generate-test-report-command}
34
+ *
35
+ * @param message - the message to be displayed in the report
36
+ * @param group - the destination group to deliver the report to
37
+ */
38
+ generateTestReport?(message: string, group?: string): Promise<void>;
39
+ /**
40
+ * Device Posture
41
+ */
42
+ /**
43
+ * Override the device posture
44
+ * @see {@link https://www.w3.org/TR/device-posture/#set-device-posture}
45
+ *
46
+ * @param posture - the posture to which the device should be set
47
+ */
48
+ setDevicePosture?(posture: DevicePostureType): Promise<void>;
49
+ /**
50
+ * Return device posture control back to hardware
51
+ * @see {@link https://www.w3.org/TR/device-posture/#clear-device-posture}
52
+ */
53
+ clearDevicePosture?(): Promise<void>;
54
+ /**
55
+ * Generic Sensor
56
+ */
57
+ /**
58
+ * Create a virtual sensor
59
+ * @see {@link https://www.w3.org/TR/generic-sensor/#create-virtual-sensor-command}
60
+ *
61
+ * @param type - the virtual sensor type to create
62
+ * @param connected - whether the sensor should be configured as connected
63
+ * @param maxSamplingFrequency - the maximum sampling frequency of this sensor
64
+ * @param minSamplingFrequency - the minimum sampling frequency of this sensor
65
+ */
66
+ createVirtualSensor?(type: string, connected?: boolean, maxSamplingFrequency?: number, minSamplingFrequency?: number): Promise<void>;
67
+ /**
68
+ * Retrieve information about a virtual sensor
69
+ * @see {@link https://www.w3.org/TR/generic-sensor/#get-virtual-sensor-information-command}
70
+ *
71
+ * @param sensorType - the virtual sensor type
72
+ *
73
+ * @returns an object with sensor information such as its requested sampling frequency
74
+ */
75
+ getVirtualSensorInfo?(sensorType: string): Promise<VirtualSensorInfo>;
76
+ /**
77
+ * Update a virtual sensor with a new reading
78
+ * @see {@link https://www.w3.org/TR/generic-sensor/#update-virtual-sensor-reading-command}
79
+ *
80
+ * @param sensorType - the virtual sensor type
81
+ * @param reading - sensor type-specific sensor reading data
82
+ */
83
+ updateVirtualSensorReading?(sensorType: string, reading: VirtualSensorReading): Promise<void>;
84
+ /**
85
+ * Delete a virtual sensor
86
+ * @see {@link https://www.w3.org/TR/generic-sensor/#delete-virtual-sensor-command}
87
+ *
88
+ * @param sensorType - the virtual sensor type
89
+ */
90
+ deleteVirtualSensor?(sensorType: string): Promise<void>;
91
+ /**
92
+ * Custom Handlers
93
+ */
94
+ /**
95
+ * Set the protocol handler automation mode
96
+ * @see {@link https://html.spec.whatwg.org/multipage/system-state.html#user-agent-automation}
97
+ *
98
+ * @param mode - the protocol handler automation mode
99
+ */
100
+ setRPHRegistrationMode?(mode: RPHRegistrationMode): Promise<void>;
101
+ /**
102
+ * Secure Payment Confirmation
103
+ */
104
+ /**
105
+ * Set the current transaction automation mode
106
+ * @see {@link https://www.w3.org/TR/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode}
107
+ *
108
+ * @param mode - the transaction automation mode
109
+ */
110
+ setSPCTransactionMode?(mode: SPCTransactionMode): Promise<void>;
111
+ /**
112
+ * Compute Pressure
113
+ */
114
+ /**
115
+ * Create a virtual pressure source
116
+ * @see {@link https://www.w3.org/TR/compute-pressure/#create-virtual-pressure-source}
117
+ *
118
+ * @param type - the virtual pressure source type to create
119
+ * @param supported - whether the pressure source should be configured as supported
120
+ */
121
+ createVirtualPressureSource?(type: string, supported?: boolean): Promise<void>;
122
+ /**
123
+ * Update the state of a virtual pressure source
124
+ * @see {@link https://www.w3.org/TR/compute-pressure/#update-virtual-pressure-source}
125
+ *
126
+ * @param sensorType - the virtual pressure source type
127
+ * @param sample - the pressure state
128
+ */
129
+ updateVirtualPressureSource?(pressureSourceType: string, sample: PressureSourceState): Promise<void>;
130
+ /**
131
+ * Delete a virtual pressure source
132
+ * @see {@link https://www.w3.org/TR/compute-pressure/#delete-virtual-pressure-source}
133
+ *
134
+ * @param pressureSourceType - the virtual pressure source type
135
+ */
136
+ deleteVirtualPressureSource?(pressureSourceType: string): Promise<void>;
137
+ /**
138
+ * Federated Credential Management
139
+ */
140
+ /**
141
+ * Cancel the currently open FedCM dialog
142
+ * @see {@link https://www.w3.org/TR/fedcm-1/#webdriver-canceldialog}
143
+ */
144
+ fedCMCancelDialog?(): Promise<void>;
145
+ /**
146
+ * Select an account to use for the currently open FedCM dialog
147
+ * @see {@link https://www.w3.org/TR/fedcm-1/#webdriver-selectaccount}
148
+ *
149
+ * @param accountIndex - index of the account in the list of available accounts
150
+ */
151
+ fedCMSelectAccount?(accountIndex: number): Promise<void>;
152
+ /**
153
+ * Click a button in the currently open FedCM dialog
154
+ * @see {@link https://www.w3.org/TR/fedcm-1/#webdriver-clickdialogbutton}
155
+ *
156
+ * @param dialogButton - button identifier
157
+ */
158
+ fedCMClickDialogButton?(dialogButton: string): Promise<void>;
159
+ /**
160
+ * Return all accounts that the user can select in the currently open FedCM dialog
161
+ * @see {@link https://www.w3.org/TR/fedcm-1/#webdriver-accountlist}
162
+ *
163
+ * @returns list of account objects
164
+ */
165
+ fedCMGetAccounts?(): Promise<FedCMAccount[]>;
166
+ /**
167
+ * Return the title and subtitle (if one exists) of the currently open FedCM dialog
168
+ * @see {@link https://www.w3.org/TR/fedcm-1/#webdriver-gettitle}
169
+ *
170
+ * @returns dialog title and subtitle (if one exists)
171
+ */
172
+ fedCMGetTitle?(): Promise<FedCMDialogTitle>;
173
+ /**
174
+ * Return the type of the currently open FedCM dialog
175
+ * @see {@link https://www.w3.org/TR/fedcm-1/#webdriver-getdialogtype}
176
+ *
177
+ * @returns dialog type
178
+ */
179
+ fedCMGetDialogType?(): Promise<string>;
180
+ /**
181
+ * Set the state of the promise rejection delay
182
+ * @see {@link https://www.w3.org/TR/fedcm-1/#webdriver-setdelayenabled}
183
+ */
184
+ fedCMSetDelayEnabled?(enabled: boolean): Promise<void>;
185
+ /**
186
+ * Reset the cooldown delay used after dismissing a FedCM dialog
187
+ * @see {@link https://www.w3.org/TR/fedcm-1/#webdriver-resetcooldown}
188
+ */
189
+ fedCMResetCooldown?(): Promise<void>;
190
+ /**
191
+ * Web Authentication
192
+ */
193
+ /**
194
+ * Add a virtual authenticator to a browser
195
+ * @see {@link https://www.w3.org/TR/webauthn-2/#sctn-automation-add-virtual-authenticator}
196
+ *
197
+ * @param protocol - the protocol
198
+ * @param transport - a valid AuthenticatorTransport value
199
+ * @param hasResidentKey - whether there is a resident key
200
+ * @param hasUserVerification - whether the authenticator has user verification
201
+ * @param isUserConsenting - whether it is a user consenting authenticator
202
+ * @param isUserVerified - whether the user is verified
203
+ *
204
+ * @returns The authenticator ID
205
+ */
206
+ addVirtualAuthenticator?(protocol: 'ctap/u2f' | 'ctap2' | 'ctap2_1', transport: string, hasResidentKey?: boolean, hasUserVerification?: boolean, isUserConsenting?: boolean, isUserVerified?: boolean): Promise<string>;
207
+ /**
208
+ * Remove a virtual authenticator
209
+ * @see {@link https://www.w3.org/TR/webauthn-2/#sctn-automation-remove-virtual-authenticator}
210
+ *
211
+ * @param authenticatorId - the ID returned in the call to add the authenticator
212
+ */
213
+ removeVirtualAuthenticator?(authenticatorId: string): Promise<void>;
214
+ /**
215
+ * Inject a public key credential source into a virtual authenticator
216
+ * @see {@link https://www.w3.org/TR/webauthn-2/#sctn-automation-add-credential}
217
+ *
218
+ * @param credentialId - the base64 encoded credential ID
219
+ * @param isResidentCredential - if true, a client-side credential, otherwise a server-side
220
+ * credential
221
+ * @param rpId - the relying party ID the credential is scoped to
222
+ * @param privateKey - the base64 encoded private key package
223
+ * @param userHandle - the base64 encoded user handle
224
+ * @param signCount - the initial value for a signature counter
225
+ */
226
+ addAuthCredential?(credentialId: string, isResidentCredential: boolean, rpId: string, privateKey: string, userHandle: string, signCount: number, authenticatorId: string): Promise<void>;
227
+ /**
228
+ * Get the list of public key credential sources
229
+ * @see {@link https://www.w3.org/TR/webauthn-2/#sctn-automation-get-credentials}
230
+ *
231
+ * @returns The list of Credentials
232
+ */
233
+ getAuthCredential?(): Promise<Credential[]>;
234
+ /**
235
+ * Remove all auth credentials
236
+ * @see {@link https://www.w3.org/TR/webauthn-2/#sctn-automation-remove-all-credentials}
237
+ */
238
+ removeAllAuthCredentials?(): Promise<void>;
239
+ /**
240
+ * Remove a specific auth credential
241
+ *
242
+ * @param credentialId - the credential ID
243
+ * @param authenticatorId - the authenticator ID
244
+ */
245
+ removeAuthCredential?(credentialId: string, authenticatorId: string): Promise<void>;
246
+ /**
247
+ * Set the isUserVerified property of an authenticator
248
+ * @see {@link https://www.w3.org/TR/webauthn-2/#sctn-automation-set-user-verified}
249
+ *
250
+ * @param isUserVerified - the value of the isUserVerified property
251
+ * @param authenticatorId - the authenticator id
252
+ */
253
+ setUserAuthVerified?(isUserVerified: boolean, authenticatorId: string): Promise<void>;
254
+ }
255
+ export type PermissionState = 'granted' | 'denied' | 'prompt';
256
+ export interface PermissionDescriptor {
257
+ name: string;
258
+ [key: string]: any;
259
+ }
260
+ export type DevicePostureType = 'continuous' | 'folded';
261
+ export interface VirtualSensorInfo {
262
+ requestedSamplingFrequency: number;
263
+ }
264
+ export interface VirtualSensorXYZReading {
265
+ x: number;
266
+ y: number;
267
+ z: number;
268
+ }
269
+ export interface VirtualSensorSingleValueReading {
270
+ [key: string]: number;
271
+ }
272
+ export type VirtualSensorReading = VirtualSensorXYZReading | VirtualSensorSingleValueReading;
273
+ export type RPHRegistrationMode = 'autoAccept' | 'autoReject' | 'none';
274
+ export type SPCTransactionMode = 'autoAccept' | 'autoChooseToAuthAnotherWay' | 'autoReject' | 'autoOptOut';
275
+ export type PressureSourceState = 'nominal' | 'fair' | 'serious' | 'critical';
276
+ export interface FedCMAccount {
277
+ accountId: string;
278
+ email: string;
279
+ name: string;
280
+ givenName?: string;
281
+ pictureUrl?: string;
282
+ idpConfigUrl: string;
283
+ loginState: string;
284
+ termsOfServiceUrl?: string;
285
+ privacyPolicyUrl?: string;
286
+ }
287
+ export interface FedCMDialogTitle {
288
+ title: string;
289
+ subtitle?: string;
290
+ }
291
+ export interface Credential {
292
+ credentialId: string;
293
+ isResidentCredential: boolean;
294
+ rpId: string;
295
+ privateKey: string;
296
+ userHandle?: string;
297
+ signCount: number;
298
+ largeBlob?: string;
299
+ }
300
+ //# sourceMappingURL=other-protocols.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"other-protocols.d.ts","sourceRoot":"","sources":["../../../lib/commands/other-protocols.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=other-protocols.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"other-protocols.js","sourceRoot":"","sources":["../../../lib/commands/other-protocols.ts"],"names":[],"mappings":""}