-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathGestureStrategy.ts
More file actions
454 lines (418 loc) · 13.2 KB
/
GestureStrategy.ts
File metadata and controls
454 lines (418 loc) · 13.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
import Gestures from './Gestures.ts';
import PlaywrightGestures from './PlaywrightGestures.ts';
import { PlaywrightElement } from './PlaywrightAdapter.ts';
import {
EncapsulatedElementType,
asDetoxElement,
asPlaywrightElement,
} from './EncapsulatedElement.ts';
/**
* Unified options for gesture methods.
* Framework-specific options (e.g. Detox's checkStability, hideKeyboard) are
* handled internally by each strategy — page objects only deal with these
* universal options.
*/
export interface UnifiedGestureOptions {
/** Maximum time (ms) to wait for the element before timing out */
timeout?: number;
/** Human-readable description for logging and error messages */
description?: string;
/** Swipe speed — Detox only; Appium ignores this */
speed?: 'fast' | 'slow';
/** Swipe percentage (0–1) — Detox only; Appium ignores this */
percentage?: number;
/** Scroll direction — Detox only; used by scrollToElement */
direction?: 'up' | 'down' | 'left' | 'right';
/** Scroll amount in px — Detox only; used by scrollToElement */
scrollAmount?: number;
}
/**
* Element input for tapAtIndex — either a single element (Detox uses .atIndex())
* or an array of elements (Appium selects by array index).
*/
export type TapAtIndexElement = EncapsulatedElementType | PlaywrightElement[];
export type ScrollViewMatcher = Promise<Detox.NativeMatcher>;
/**
* Strategy interface for framework-agnostic gesture execution.
*
* Each method accepts an `EncapsulatedElementType` (either DetoxElement or
* Promise<PlaywrightElement>) so page objects never need to know which
* framework is running.
*/
export interface GestureStrategy {
tap(
elem: EncapsulatedElementType,
opts?: UnifiedGestureOptions,
): Promise<void>;
waitAndTap(
elem: EncapsulatedElementType,
opts?: UnifiedGestureOptions,
): Promise<void>;
typeText(
elem: EncapsulatedElementType,
text: string,
opts?: UnifiedGestureOptions,
): Promise<void>;
replaceText(
elem: EncapsulatedElementType,
text: string,
opts?: UnifiedGestureOptions,
): Promise<void>;
swipe(
elem: EncapsulatedElementType,
direction: 'up' | 'down' | 'left' | 'right',
opts?: UnifiedGestureOptions,
): Promise<void>;
scrollToElement(
target: EncapsulatedElementType,
scrollView: ScrollViewMatcher,
opts?: UnifiedGestureOptions,
): Promise<void>;
longPress(
elem: EncapsulatedElementType,
opts?: UnifiedGestureOptions,
): Promise<void>;
dblTap(
elem: EncapsulatedElementType,
opts?: UnifiedGestureOptions,
): Promise<void>;
tapAtPoint(
elem: EncapsulatedElementType,
point: { x: number; y: number },
opts?: UnifiedGestureOptions,
): Promise<void>;
tapAtIndex(
elem: TapAtIndexElement,
index: number,
opts?: UnifiedGestureOptions,
): Promise<void>;
}
/**
* Detox implementation of GestureStrategy.
*
* Wraps the existing `Gestures` class, preserving all retry logic, stability
* checks, and platform-specific scroll behaviour. `UnifiedGestureOptions` are
* mapped to Detox-specific option shapes internally.
*/
export class DetoxGestureStrategy implements GestureStrategy {
/**
* Tap an element
* @param elem - The element to tap
* @param opts - The options for the tap
* @returns A promise that resolves when the tap is complete
*/
async tap(
elem: EncapsulatedElementType,
opts?: UnifiedGestureOptions,
): Promise<void> {
await Gestures.tap(asDetoxElement(elem), {
timeout: opts?.timeout,
elemDescription: opts?.description,
});
}
/**
* Wait for an element to be visible and then tap it
* @param elem - The element to wait and tap
* @param opts - The options for the wait and tap
* @returns A promise that resolves when the wait and tap is complete
*/
async waitAndTap(
elem: EncapsulatedElementType,
opts?: UnifiedGestureOptions,
): Promise<void> {
await Gestures.waitAndTap(asDetoxElement(elem), {
timeout: opts?.timeout,
elemDescription: opts?.description,
});
}
/**
* Type text into an element
* @param elem - The element to type text into
* @param text - The text to type
* @param opts - The options for the type text
* @returns A promise that resolves when the type text is complete
*/
async typeText(
elem: EncapsulatedElementType,
text: string,
opts?: UnifiedGestureOptions,
): Promise<void> {
await Gestures.typeText(asDetoxElement(elem), text, {
hideKeyboard: true,
timeout: opts?.timeout,
elemDescription: opts?.description,
});
}
/**
* Replace text in an element
* @param elem - The element to replace text in
* @param text - The text to replace
* @param opts - The options for the replace text
* @returns A promise that resolves when the replace text is complete
*/
async replaceText(
elem: EncapsulatedElementType,
text: string,
opts?: UnifiedGestureOptions,
): Promise<void> {
await Gestures.replaceText(asDetoxElement(elem), text, {
timeout: opts?.timeout,
elemDescription: opts?.description,
});
}
/**
* Swipe an element
* @param elem - The element to swipe
* @param direction - The direction to swipe
* @param opts - The options for the swipe
* @returns A promise that resolves when the swipe is complete
*/
async swipe(
elem: EncapsulatedElementType,
direction: 'up' | 'down' | 'left' | 'right',
opts?: UnifiedGestureOptions,
): Promise<void> {
await Gestures.swipe(asDetoxElement(elem), direction, {
timeout: opts?.timeout,
elemDescription: opts?.description,
speed: opts?.speed,
percentage: opts?.percentage,
});
}
/**
* Scroll to an element
* @param target - The element to scroll to
* @param scrollView - The scroll view to scroll to
* @param opts - The options for the scroll to element
* @returns A promise that resolves when the scroll to element is complete
*/
async scrollToElement(
target: EncapsulatedElementType,
scrollView: ScrollViewMatcher,
opts?: UnifiedGestureOptions,
): Promise<void> {
const resolvedScrollView = await scrollView;
if (this.isLikelyDetoxElement(resolvedScrollView)) {
throw new Error(
'DetoxGestureStrategy.scrollToElement requires a Detox NativeMatcher ' +
'(e.g. Matchers.getIdentifier(...) or by.id(...)), not a DetoxElement.',
);
}
await Gestures.scrollToElement(
asDetoxElement(target),
Promise.resolve(resolvedScrollView),
{
timeout: opts?.timeout,
elemDescription: opts?.description,
direction: opts?.direction,
scrollAmount: opts?.scrollAmount,
},
);
}
private isLikelyDetoxElement(value: unknown): value is DetoxElement {
return (
typeof value === 'object' &&
value !== null &&
'tap' in value &&
typeof (value as { tap?: unknown }).tap === 'function'
);
}
/**
* Long press an element
* @param elem - The element to long press
* @param opts - The options for the long press
* @returns A promise that resolves when the long press is complete
*/
async longPress(
elem: EncapsulatedElementType,
opts?: UnifiedGestureOptions,
): Promise<void> {
await Gestures.longPress(asDetoxElement(elem), {
timeout: opts?.timeout,
elemDescription: opts?.description,
});
}
/**
* Double tap an element
* @param elem - The element to double tap
* @param opts - The options for the double tap
* @returns A promise that resolves when the double tap is complete
*/
async dblTap(
elem: EncapsulatedElementType,
opts?: UnifiedGestureOptions,
): Promise<void> {
await Gestures.dblTap(asDetoxElement(elem), {
timeout: opts?.timeout,
elemDescription: opts?.description,
});
}
/**
* Tap at a point on an element
* @param elem - The element to tap at a point on
* @param point - The point to tap at
* @param opts - The options for the tap at point
* @returns A promise that resolves when the tap at point is complete
*/
async tapAtPoint(
elem: EncapsulatedElementType,
point: { x: number; y: number },
opts?: UnifiedGestureOptions,
): Promise<void> {
await Gestures.tapAtPoint(asDetoxElement(elem), point, {
timeout: opts?.timeout,
elemDescription: opts?.description,
});
}
/**
* Tap at an index on an element
* @param elem - The element to tap at an index on
* @param index - The index to tap at
* @param opts - The options for the tap at index
* @returns A promise that resolves when the tap at index is complete
*/
async tapAtIndex(
elem: EncapsulatedElementType,
index: number,
opts?: UnifiedGestureOptions,
): Promise<void> {
await Gestures.tapAtIndex(asDetoxElement(elem), index, {
timeout: opts?.timeout,
elemDescription: opts?.description,
});
}
}
/**
* Appium/WebdriverIO implementation of GestureStrategy.
*
* Wraps `PlaywrightElement` and `PlaywrightGestures`.
*/
export class AppiumGestureStrategy implements GestureStrategy {
/**
* Tap an element
* @param elem - The element to tap
* @returns A promise that resolves when the tap is complete
*/
async tap(elem: EncapsulatedElementType): Promise<void> {
const el = await asPlaywrightElement(elem);
await el.click();
}
/**
* Wait for an element to be visible and then tap it
* @param elem - The element to wait and tap
* @returns A promise that resolves when the wait and tap is complete
*/
async waitAndTap(elem: EncapsulatedElementType): Promise<void> {
const el = await asPlaywrightElement(elem);
await el.click();
}
/**
* Type text into an element
* @param elem - The element to type text into
* @param text - The text to type
* @returns A promise that resolves when the type text is complete
*/
async typeText(elem: EncapsulatedElementType, text: string): Promise<void> {
const el = await asPlaywrightElement(elem);
await el.fill(text);
}
/**
* Replace text in an element
* @param elem - The element to replace text in
* @param text - The text to replace
* @returns A promise that resolves when the replace text is complete
*/
async replaceText(
elem: EncapsulatedElementType,
text: string,
): Promise<void> {
const el = await asPlaywrightElement(elem);
await el.clear();
await el.fill(text);
}
/**
* Swipe an element
* @param elem - The element to swipe
* @param direction - The direction to swipe
* @returns A promise that resolves when the swipe is complete
*/
async swipe(
elem: EncapsulatedElementType,
direction: 'up' | 'down' | 'left' | 'right',
): Promise<void> {
const el = await asPlaywrightElement(elem);
await PlaywrightGestures.swipe(el, direction);
}
/**
* Scroll to an element
* @param target - The element to scroll to
* @param scrollView - The scroll view to scroll to
* @returns A promise that resolves when the scroll to element is complete
*/
async scrollToElement(
target: EncapsulatedElementType,
_scrollView: ScrollViewMatcher,
): Promise<void> {
const el = await asPlaywrightElement(target);
await PlaywrightGestures.scrollIntoView(el);
}
/**
* Long press an element
* @param elem - The element to long press
* @returns A promise that resolves when the long press is complete
*/
async longPress(elem: EncapsulatedElementType): Promise<void> {
const el = await asPlaywrightElement(elem);
await PlaywrightGestures.longPress(el);
}
/**
* Double tap an element
* @param elem - The element to double tap
* @returns A promise that resolves when the double tap is complete
*/
async dblTap(elem: EncapsulatedElementType): Promise<void> {
const el = await asPlaywrightElement(elem);
await PlaywrightGestures.dblTap(el);
}
/**
* Tap at a point on an element
* @param elem - The element to tap at a point on
* @param point - The point to tap at
* @returns A promise that resolves when the tap at point is complete
*/
async tapAtPoint(
elem: EncapsulatedElementType,
point: { x: number; y: number },
): Promise<void> {
const el = await asPlaywrightElement(elem);
await el.tapOnCoordinates(point);
}
/**
* Tap at an index on an element
* @param elem - The element to tap at an index on
* @param index - The index to tap at
* @returns A promise that resolves when the tap at index is complete
*/
async tapAtIndex(elem: TapAtIndexElement, index: number): Promise<void> {
// If an array of PlaywrightElements is provided, tap the one at `index`
if (Array.isArray(elem)) {
const elements = elem as PlaywrightElement[];
if (index < 0 || index >= elements.length) {
throw new Error(
`tapAtIndex: index ${index} is out of bounds (${elements.length} elements)`,
);
}
await elements[index].click();
return;
}
// Single element: allow index 0 as a pass-through, reject anything else
if (index !== 0) {
throw new Error(
`tapAtIndex: Appium requires a PlaywrightElement[] array for index > 0. ` +
`Received single element with index ${index}.`,
);
}
const el = await asPlaywrightElement(elem);
await el.click();
}
}