appium-uiautomator2-driver 6.7.5 → 6.7.7
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/CHANGELOG.md +12 -0
- package/build/lib/commands/actions.d.ts +26 -29
- package/build/lib/commands/actions.d.ts.map +1 -1
- package/build/lib/commands/actions.js +19 -27
- package/build/lib/commands/actions.js.map +1 -1
- package/build/lib/commands/alert.d.ts +14 -22
- package/build/lib/commands/alert.d.ts.map +1 -1
- package/build/lib/commands/alert.js +8 -19
- package/build/lib/commands/alert.js.map +1 -1
- package/build/lib/commands/app-management.d.ts +7 -10
- package/build/lib/commands/app-management.d.ts.map +1 -1
- package/build/lib/commands/app-management.js +4 -14
- package/build/lib/commands/app-management.js.map +1 -1
- package/build/lib/commands/battery.d.ts +4 -5
- package/build/lib/commands/battery.d.ts.map +1 -1
- package/build/lib/commands/battery.js +4 -9
- package/build/lib/commands/battery.js.map +1 -1
- package/build/lib/commands/clipboard.d.ts +9 -13
- package/build/lib/commands/clipboard.d.ts.map +1 -1
- package/build/lib/commands/clipboard.js +7 -14
- package/build/lib/commands/clipboard.js.map +1 -1
- package/build/lib/commands/element.d.ts +64 -69
- package/build/lib/commands/element.d.ts.map +1 -1
- package/build/lib/commands/element.js +64 -84
- package/build/lib/commands/element.js.map +1 -1
- package/build/lib/commands/find.d.ts +13 -9
- package/build/lib/commands/find.d.ts.map +1 -1
- package/build/lib/commands/find.js +4 -16
- package/build/lib/commands/find.js.map +1 -1
- package/build/lib/commands/gestures.d.ts +87 -189
- package/build/lib/commands/gestures.d.ts.map +1 -1
- package/build/lib/commands/gestures.js +77 -204
- package/build/lib/commands/gestures.js.map +1 -1
- package/build/lib/commands/keyboard.d.ts +30 -41
- package/build/lib/commands/keyboard.d.ts.map +1 -1
- package/build/lib/commands/keyboard.js +22 -37
- package/build/lib/commands/keyboard.js.map +1 -1
- package/build/lib/commands/misc.d.ts +19 -35
- package/build/lib/commands/misc.d.ts.map +1 -1
- package/build/lib/commands/misc.js +15 -30
- package/build/lib/commands/misc.js.map +1 -1
- package/build/lib/commands/navigation.d.ts +11 -16
- package/build/lib/commands/navigation.d.ts.map +1 -1
- package/build/lib/commands/navigation.js +9 -17
- package/build/lib/commands/navigation.js.map +1 -1
- package/build/lib/commands/viewport.d.ts +23 -22
- package/build/lib/commands/viewport.d.ts.map +1 -1
- package/build/lib/commands/viewport.js +17 -24
- package/build/lib/commands/viewport.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/lib/commands/actions.ts +95 -0
- package/lib/commands/alert.ts +46 -0
- package/lib/commands/app-management.ts +25 -0
- package/lib/commands/battery.ts +19 -0
- package/lib/commands/clipboard.ts +29 -0
- package/lib/commands/element.ts +180 -0
- package/lib/commands/find.ts +48 -0
- package/lib/commands/gestures.ts +297 -0
- package/lib/commands/keyboard.ts +102 -0
- package/lib/commands/misc.ts +67 -0
- package/lib/commands/navigation.ts +32 -0
- package/lib/commands/viewport.ts +78 -0
- package/npm-shrinkwrap.json +16 -46
- package/package.json +1 -1
- package/lib/commands/actions.js +0 -107
- package/lib/commands/alert.js +0 -63
- package/lib/commands/app-management.js +0 -32
- package/lib/commands/battery.js +0 -23
- package/lib/commands/clipboard.js +0 -37
- package/lib/commands/element.js +0 -261
- package/lib/commands/find.js +0 -47
- package/lib/commands/gestures.js +0 -446
- package/lib/commands/keyboard.js +0 -108
- package/lib/commands/misc.js +0 -109
- package/lib/commands/navigation.js +0 -33
- package/lib/commands/viewport.js +0 -100
|
@@ -1,212 +1,110 @@
|
|
|
1
|
+
import type { Element as AppiumElement } from '@appium/types';
|
|
2
|
+
import type { AndroidUiautomator2Driver } from '../driver';
|
|
1
3
|
/**
|
|
2
|
-
* Performs a simple click/tap gesture
|
|
3
|
-
*
|
|
4
|
-
* @
|
|
5
|
-
* @param
|
|
6
|
-
* If the element is missing then both click offset coordinates must be provided.
|
|
7
|
-
* If both the element id and offset are provided then the coordinates are parsed
|
|
8
|
-
* as relative offsets from the top left corner of the element.
|
|
9
|
-
* @param {number} [x] The x coordinate to click on.
|
|
10
|
-
* @param {number} [y] The y coordinate to click on.
|
|
11
|
-
* @returns {Promise<void>}
|
|
12
|
-
* @throws {Error} if provided options are not valid
|
|
4
|
+
* Performs a simple click/tap gesture.
|
|
5
|
+
* @param elementId - Optional element to use as the origin for the click. If not provided, uses screen coordinates.
|
|
6
|
+
* @param x - Optional X offset from the element origin or screen.
|
|
7
|
+
* @param y - Optional Y offset from the element origin or screen.
|
|
13
8
|
*/
|
|
14
|
-
export function mobileClickGesture(this:
|
|
9
|
+
export declare function mobileClickGesture(this: AndroidUiautomator2Driver, elementId?: AppiumElement | string, x?: number, y?: number): Promise<void>;
|
|
15
10
|
/**
|
|
16
|
-
* Performs a click
|
|
17
|
-
*
|
|
18
|
-
* @
|
|
19
|
-
* @param
|
|
20
|
-
*
|
|
21
|
-
* If both the element id and offset are provided then the coordinates are parsed
|
|
22
|
-
* as relative offsets from the top left corner of the element.
|
|
23
|
-
* @param {number} [x] The x coordinate to click on.
|
|
24
|
-
* @param {number} [y] The y coordinate to click on.
|
|
25
|
-
* @param {number} [duration] Click duration in milliseconds. The value must not be negative.
|
|
26
|
-
* Default is 500.
|
|
27
|
-
* @returns {Promise<void>}
|
|
28
|
-
* @throws {Error} if provided options are not valid
|
|
11
|
+
* Performs a long click with an optional duration.
|
|
12
|
+
* @param elementId - Optional element to use as the origin for the long click.
|
|
13
|
+
* @param x - Optional X offset from the element origin or screen.
|
|
14
|
+
* @param y - Optional Y offset from the element origin or screen.
|
|
15
|
+
* @param duration - Optional duration of the long press in milliseconds.
|
|
29
16
|
*/
|
|
30
|
-
export function mobileLongClickGesture(this:
|
|
17
|
+
export declare function mobileLongClickGesture(this: AndroidUiautomator2Driver, elementId?: AppiumElement | string, x?: number, y?: number, duration?: number): Promise<void>;
|
|
31
18
|
/**
|
|
32
|
-
* Performs a click
|
|
33
|
-
* @
|
|
34
|
-
* @param
|
|
35
|
-
*
|
|
36
|
-
* If both the element id and offset are provided then the coordinates are parsed
|
|
37
|
-
* as relative offsets from the top left corner of the element.
|
|
38
|
-
* @param {number} [x] The x coordinate to click on.
|
|
39
|
-
* @param {number} [y] The y coordinate to click on.
|
|
40
|
-
* @returns {Promise<void>}
|
|
41
|
-
* @throws {Error} if provided options are not valid
|
|
19
|
+
* Performs a double-click gesture.
|
|
20
|
+
* @param elementId - Optional element to use as the origin for the double click.
|
|
21
|
+
* @param x - Optional X offset from the element origin or screen.
|
|
22
|
+
* @param y - Optional Y offset from the element origin or screen.
|
|
42
23
|
*/
|
|
43
|
-
export function mobileDoubleClickGesture(this:
|
|
24
|
+
export declare function mobileDoubleClickGesture(this: AndroidUiautomator2Driver, elementId?: AppiumElement | string, x?: number, y?: number): Promise<void>;
|
|
44
25
|
/**
|
|
45
|
-
* Drags
|
|
46
|
-
* @
|
|
47
|
-
* @param
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
* @param
|
|
52
|
-
* @param {number} [startY] The y coordinate where the dragging starts
|
|
53
|
-
* @param {number} [endX] The x coordinate where the dragging ends
|
|
54
|
-
* @param {number} [endY] The y coordinate where the dragging ends
|
|
55
|
-
* @param {number} [speed] The speed at which to perform this gesture in pixels per second.
|
|
56
|
-
* The value must not be negative.
|
|
57
|
-
* Default is 2500 * displayDensity.
|
|
58
|
-
* @returns {Promise<void>}
|
|
59
|
-
* @throws {Error} if provided options are not valid
|
|
26
|
+
* Drags from a start point to an end point.
|
|
27
|
+
* @param elementId - Optional element to use as the origin for the drag.
|
|
28
|
+
* @param startX - X coordinate of the drag start point.
|
|
29
|
+
* @param startY - Y coordinate of the drag start point.
|
|
30
|
+
* @param endX - X coordinate of the drag end point.
|
|
31
|
+
* @param endY - Y coordinate of the drag end point.
|
|
32
|
+
* @param speed - Optional speed of the drag gesture.
|
|
60
33
|
*/
|
|
61
|
-
export function mobileDragGesture(this:
|
|
34
|
+
export declare function mobileDragGesture(this: AndroidUiautomator2Driver, elementId?: AppiumElement | string, startX?: number, startY?: number, endX?: number, endY?: number, speed?: number): Promise<void>;
|
|
62
35
|
/**
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
* @
|
|
66
|
-
* @
|
|
67
|
-
* @param
|
|
68
|
-
*
|
|
69
|
-
* @param
|
|
70
|
-
*
|
|
71
|
-
*
|
|
72
|
-
* area is effectively ignored.
|
|
73
|
-
* @param {number} [left] The left coordinate of the fling bounding area.
|
|
74
|
-
* @param {number} [top] The top coordinate of the fling bounding area.
|
|
75
|
-
* @param {number} [width] The width of the fling bounding area.
|
|
76
|
-
* @param {number} [height] The height of the fling bounding area.
|
|
77
|
-
* @param {number} [speed] The speed at which to perform this gesture in pixels per second.
|
|
78
|
-
* The value must be greater than the minimum fling velocity for the given view (50 by default).
|
|
79
|
-
* Default is 7500 * displayDensity.
|
|
80
|
-
* @returns {Promise<boolean>} True if the object can still scroll in the given direction.
|
|
36
|
+
* Performs a fling gesture and reports if further scrolling is possible.
|
|
37
|
+
* @param direction - Direction of the fling ('up', 'down', 'left', 'right').
|
|
38
|
+
* @param elementId - Optional element to use as the origin for the fling.
|
|
39
|
+
* @param left - Optional left coordinate of the fling area.
|
|
40
|
+
* @param top - Optional top coordinate of the fling area.
|
|
41
|
+
* @param width - Optional width of the fling area.
|
|
42
|
+
* @param height - Optional height of the fling area.
|
|
43
|
+
* @param speed - Optional speed of the fling gesture.
|
|
44
|
+
* @returns True if further scrolling is possible, false otherwise.
|
|
81
45
|
*/
|
|
82
|
-
export function mobileFlingGesture(this:
|
|
46
|
+
export declare function mobileFlingGesture(this: AndroidUiautomator2Driver, direction: string, elementId?: AppiumElement | string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<boolean>;
|
|
83
47
|
/**
|
|
84
|
-
* Performs a pinch
|
|
85
|
-
* @
|
|
86
|
-
* @param
|
|
87
|
-
*
|
|
88
|
-
* @param
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
* @param {number} [left] The left coordinate of the pinch bounding area.
|
|
93
|
-
* @param {number} [top] The top coordinate of the pinch bounding area.
|
|
94
|
-
* @param {number} [width] The width of the pinch bounding area.
|
|
95
|
-
* @param {number} [height] The height of the pinch bounding area.
|
|
96
|
-
* @param {number} [speed] The speed at which to perform this gesture in pixels per second.
|
|
97
|
-
* The value must not be negative.
|
|
98
|
-
* Default is 2500 * displayDensity.
|
|
99
|
-
* @returns {Promise<void>}
|
|
100
|
-
* @throws {Error} if provided options are not valid
|
|
48
|
+
* Performs a pinch-close gesture.
|
|
49
|
+
* @param percent - Percentage of the pinch (0-100).
|
|
50
|
+
* @param elementId - Optional element to use as the origin for the pinch.
|
|
51
|
+
* @param left - Optional left coordinate of the pinch area.
|
|
52
|
+
* @param top - Optional top coordinate of the pinch area.
|
|
53
|
+
* @param width - Optional width of the pinch area.
|
|
54
|
+
* @param height - Optional height of the pinch area.
|
|
55
|
+
* @param speed - Optional speed of the pinch gesture.
|
|
101
56
|
*/
|
|
102
|
-
export function mobilePinchCloseGesture(this:
|
|
57
|
+
export declare function mobilePinchCloseGesture(this: AndroidUiautomator2Driver, percent: number, elementId?: AppiumElement | string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<void>;
|
|
103
58
|
/**
|
|
104
|
-
* Performs a pinch
|
|
105
|
-
* @
|
|
106
|
-
* @param
|
|
107
|
-
*
|
|
108
|
-
* @param
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
* @param {number} [left] The left coordinate of the pinch bounding area.
|
|
113
|
-
* @param {number} [top] The top coordinate of the pinch bounding area.
|
|
114
|
-
* @param {number} [width] The width of the pinch bounding area.
|
|
115
|
-
* @param {number} [height] The height of the pinch bounding area.
|
|
116
|
-
* @param {number} [speed] The speed at which to perform this gesture in pixels per second.
|
|
117
|
-
* The value must not be negative.
|
|
118
|
-
* Default is 2500 * displayDensity.
|
|
119
|
-
* @returns {Promise<void>}
|
|
120
|
-
* @throws {Error} if provided options are not valid
|
|
59
|
+
* Performs a pinch-open gesture.
|
|
60
|
+
* @param percent - Percentage of the pinch (0-100).
|
|
61
|
+
* @param elementId - Optional element to use as the origin for the pinch.
|
|
62
|
+
* @param left - Optional left coordinate of the pinch area.
|
|
63
|
+
* @param top - Optional top coordinate of the pinch area.
|
|
64
|
+
* @param width - Optional width of the pinch area.
|
|
65
|
+
* @param height - Optional height of the pinch area.
|
|
66
|
+
* @param speed - Optional speed of the pinch gesture.
|
|
121
67
|
*/
|
|
122
|
-
export function mobilePinchOpenGesture(this:
|
|
68
|
+
export declare function mobilePinchOpenGesture(this: AndroidUiautomator2Driver, percent: number, elementId?: AppiumElement | string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<void>;
|
|
123
69
|
/**
|
|
124
|
-
* Performs a swipe gesture.
|
|
125
|
-
* @
|
|
126
|
-
* @param
|
|
127
|
-
*
|
|
128
|
-
* @param
|
|
129
|
-
*
|
|
130
|
-
* @param
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
* area is effectively ignored.
|
|
134
|
-
* @param {number} [left] The left coordinate of the swipe bounding area.
|
|
135
|
-
* @param {number} [top] The top coordinate of the swipe bounding area.
|
|
136
|
-
* @param {number} [width] The width of the swipe bounding area.
|
|
137
|
-
* @param {number} [height] The height of the swipe bounding area.
|
|
138
|
-
* @param {number} [speed] The speed at which to perform this gesture in pixels per second.
|
|
139
|
-
* The value must not be negative.
|
|
140
|
-
* Default is 5000 * displayDensity.
|
|
141
|
-
* @returns {Promise<void>}
|
|
142
|
-
* @throws {Error} if provided options are not valid
|
|
70
|
+
* Performs a swipe gesture for the given direction and percent.
|
|
71
|
+
* @param direction - Direction of the swipe ('up', 'down', 'left', 'right').
|
|
72
|
+
* @param percent - Percentage of the swipe distance (0-100).
|
|
73
|
+
* @param elementId - Optional element to use as the origin for the swipe.
|
|
74
|
+
* @param left - Optional left coordinate of the swipe area.
|
|
75
|
+
* @param top - Optional top coordinate of the swipe area.
|
|
76
|
+
* @param width - Optional width of the swipe area.
|
|
77
|
+
* @param height - Optional height of the swipe area.
|
|
78
|
+
* @param speed - Optional speed of the swipe gesture.
|
|
143
79
|
*/
|
|
144
|
-
export function mobileSwipeGesture(this:
|
|
80
|
+
export declare function mobileSwipeGesture(this: AndroidUiautomator2Driver, direction: string, percent: number, elementId?: AppiumElement | string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<void>;
|
|
145
81
|
/**
|
|
146
|
-
* Performs a scroll gesture.
|
|
147
|
-
*
|
|
148
|
-
* @
|
|
149
|
-
* @
|
|
150
|
-
* @param
|
|
151
|
-
*
|
|
152
|
-
* @param
|
|
153
|
-
*
|
|
154
|
-
* @param
|
|
155
|
-
*
|
|
156
|
-
* If both the element id and the scroll bounding area are provided then this
|
|
157
|
-
* area is effectively ignored.
|
|
158
|
-
* @param {number} [left] The left coordinate of the scroll bounding area.
|
|
159
|
-
* @param {number} [top] The top coordinate of the scroll bounding area.
|
|
160
|
-
* @param {number} [width] The width of the scroll bounding area.
|
|
161
|
-
* @param {number} [height] The height of the scroll bounding area.
|
|
162
|
-
* @param {number} [speed] The speed at which to perform this gesture in pixels per second.
|
|
163
|
-
* The value must not be negative.
|
|
164
|
-
* Default is 5000 * displayDensity.
|
|
165
|
-
* @returns {Promise<boolean>} True if the object can still scroll in the given direction.
|
|
82
|
+
* Performs a scroll gesture and reports if further scrolling is possible.
|
|
83
|
+
* @param direction - Direction of the scroll ('up', 'down', 'left', 'right').
|
|
84
|
+
* @param percent - Percentage of the scroll distance (0-100).
|
|
85
|
+
* @param elementId - Optional element to use as the origin for the scroll.
|
|
86
|
+
* @param left - Optional left coordinate of the scroll area.
|
|
87
|
+
* @param top - Optional top coordinate of the scroll area.
|
|
88
|
+
* @param width - Optional width of the scroll area.
|
|
89
|
+
* @param height - Optional height of the scroll area.
|
|
90
|
+
* @param speed - Optional speed of the scroll gesture.
|
|
91
|
+
* @returns True if further scrolling is possible, false otherwise.
|
|
166
92
|
*/
|
|
167
|
-
export function mobileScrollGesture(this:
|
|
93
|
+
export declare function mobileScrollGesture(this: AndroidUiautomator2Driver, direction: string, percent: number, elementId?: AppiumElement | string, left?: number, top?: number, width?: number, height?: number, speed?: number): Promise<boolean>;
|
|
168
94
|
/**
|
|
169
|
-
* Scrolls
|
|
170
|
-
*
|
|
171
|
-
*
|
|
172
|
-
*
|
|
173
|
-
* by scrolling its parent to the end step by step. The scroll direction (vertical or horizontal)
|
|
174
|
-
* is detected automatically.
|
|
175
|
-
* @this {AndroidUiautomator2Driver}
|
|
176
|
-
* @param {string} elementId The identifier of the scrollable element, which is going to be scrolled.
|
|
177
|
-
* It is required this element is a valid scrollable container and it was located
|
|
178
|
-
* by `-android uiautomator` strategy.
|
|
179
|
-
* @param {string} elementToId The identifier of the item, which belongs to the scrollable element above,
|
|
180
|
-
* and which should become visible after the scrolling operation is finished.
|
|
181
|
-
* It is required this element was located by `-android uiautomator` strategy.
|
|
182
|
-
* @returns {Promise<void>}
|
|
183
|
-
* @throws {Error} if the scrolling operation cannot be performed
|
|
95
|
+
* Scrolls a scrollable element until a target element becomes visible.
|
|
96
|
+
* @param elementId - ID of the scrollable element.
|
|
97
|
+
* @param elementToId - ID of the target element to scroll to.
|
|
98
|
+
* @throws {errors.InvalidArgumentError} If either elementId or elementToId is not provided.
|
|
184
99
|
*/
|
|
185
|
-
export function mobileScrollBackTo(this:
|
|
100
|
+
export declare function mobileScrollBackTo(this: AndroidUiautomator2Driver, elementId?: string, elementToId?: string): Promise<void>;
|
|
186
101
|
/**
|
|
187
|
-
* Scrolls
|
|
188
|
-
*
|
|
189
|
-
*
|
|
190
|
-
*
|
|
191
|
-
*
|
|
192
|
-
* is
|
|
193
|
-
*
|
|
194
|
-
* @this {AndroidUiautomator2Driver}
|
|
195
|
-
* @param {string} strategy The following strategies are supported:
|
|
196
|
-
* - `accessibility id` (UiSelector().description)
|
|
197
|
-
* - `class name` (UiSelector().className)
|
|
198
|
-
* - `-android uiautomator` (UiSelector)
|
|
199
|
-
* @param {string} selector The corresponding lookup value for the given strategy.
|
|
200
|
-
* @param {string} [elementId] The identifier of an element. It is required this element is a valid scrollable container
|
|
201
|
-
* and it was located by `-android uiautomator` strategy.
|
|
202
|
-
* If this property is not provided then the first currently available scrollable view
|
|
203
|
-
* is selected for the interaction.
|
|
204
|
-
* @param {number} [maxSwipes] The maximum number of swipes to perform on the target scrollable view in order to reach
|
|
205
|
-
* the destination element. In case this value is unset then it would be retrieved from the
|
|
206
|
-
* scrollable element itself (via `getMaxSearchSwipes()` property).
|
|
207
|
-
* @returns {Promise<void>}
|
|
208
|
-
* @throws {Error} if the scrolling operation cannot be performed
|
|
102
|
+
* Scrolls until an element located by the given strategy is visible.
|
|
103
|
+
* @param strategy - Locator strategy to use (e.g., 'id', 'xpath', 'class name').
|
|
104
|
+
* @param selector - Selector string for the element to find.
|
|
105
|
+
* @param elementId - Optional element to use as the origin for scrolling.
|
|
106
|
+
* @param maxSwipes - Optional maximum number of swipes to perform.
|
|
107
|
+
* @throws {errors.InvalidArgumentError} If either strategy or selector is not provided.
|
|
209
108
|
*/
|
|
210
|
-
export function mobileScroll(this:
|
|
211
|
-
export type AndroidUiautomator2Driver = import("../driver").AndroidUiautomator2Driver;
|
|
109
|
+
export declare function mobileScroll(this: AndroidUiautomator2Driver, strategy: string, selector: string, elementId?: AppiumElement | string, maxSwipes?: number): Promise<void>;
|
|
212
110
|
//# sourceMappingURL=gestures.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gestures.d.ts","sourceRoot":"","sources":["../../../lib/commands/gestures.
|
|
1
|
+
{"version":3,"file":"gestures.d.ts","sourceRoot":"","sources":["../../../lib/commands/gestures.ts"],"names":[],"mappings":"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"}
|