-
Notifications
You must be signed in to change notification settings - Fork 344
/
Copy pathMaestro.kt
641 lines (529 loc) · 20.3 KB
/
Maestro.kt
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
/*
*
* Copyright (c) 2022 mobile.dev inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
*/
package maestro
import com.github.romankh3.image.comparison.ImageComparison
import maestro.Filters.asFilter
import maestro.UiElement.Companion.toUiElementOrNull
import maestro.drivers.WebDriver
import maestro.utils.MaestroTimer
import maestro.utils.ScreenshotUtils
import maestro.utils.SocketUtils
import okio.Sink
import okio.buffer
import okio.sink
import okio.use
import org.slf4j.LoggerFactory
import java.awt.image.BufferedImage
import java.io.File
import java.util.*
import kotlin.system.measureTimeMillis
@Suppress("unused", "MemberVisibilityCanBePrivate")
class Maestro(
private val driver: Driver,
) : AutoCloseable {
private val sessionId = UUID.randomUUID()
private val cachedDeviceInfo by lazy {
fetchDeviceInfo()
}
private var screenRecordingInProgress = false
fun deviceName(): String {
return driver.name()
}
fun deviceInfo(): DeviceInfo {
return cachedDeviceInfo
}
private fun fetchDeviceInfo(): DeviceInfo {
LOGGER.info("Getting device info")
return driver.deviceInfo()
}
fun launchApp(
appId: String,
launchArguments: Map<String, Any> = emptyMap(),
stopIfRunning: Boolean = true
) {
LOGGER.info("Launching app $appId")
if (stopIfRunning) {
driver.stopApp(appId)
}
driver.launchApp(appId, launchArguments, sessionId = sessionId)
}
fun stopApp(appId: String) {
LOGGER.info("Stopping app $appId")
driver.stopApp(appId)
}
fun killApp(appId: String) {
LOGGER.info("Killing app $appId")
driver.killApp(appId)
}
fun clearAppState(appId: String) {
LOGGER.info("Clearing app state $appId")
driver.clearAppState(appId)
}
fun setPermissions(appId: String, permissions: Map<String, String>) {
driver.setPermissions(appId, permissions)
}
fun clearKeychain() {
LOGGER.info("Clearing keychain")
driver.clearKeychain()
}
fun backPress() {
LOGGER.info("Pressing back")
driver.backPress()
waitForAppToSettle()
}
fun hideKeyboard() {
LOGGER.info("Hiding Keyboard")
driver.hideKeyboard()
}
fun isKeyboardVisible(): Boolean {
return driver.isKeyboardVisible()
}
fun swipe(
swipeDirection: SwipeDirection? = null,
startPoint: Point? = null,
endPoint: Point? = null,
startRelative: String? = null,
endRelative: String? = null,
duration: Long
) {
when {
swipeDirection != null -> driver.swipe(swipeDirection, duration)
startPoint != null && endPoint != null -> driver.swipe(startPoint, endPoint, duration)
startRelative != null && endRelative != null -> {
val startPoints = startRelative.replace("%", "")
.split(",").map { it.trim().toInt() }
val startX = cachedDeviceInfo.widthGrid * startPoints[0] / 100
val startY = cachedDeviceInfo.heightGrid * startPoints[1] / 100
val start = Point(startX, startY)
val endPoints = endRelative.replace("%", "")
.split(",").map { it.trim().toInt() }
val endX = cachedDeviceInfo.widthGrid * endPoints[0] / 100
val endY = cachedDeviceInfo.heightGrid * endPoints[1] / 100
val end = Point(endX, endY)
driver.swipe(start, end, duration)
}
}
waitForAppToSettle()
}
fun swipe(swipeDirection: SwipeDirection, uiElement: UiElement, durationMs: Long) {
LOGGER.info("Swiping ${swipeDirection.name} on element: $uiElement")
driver.swipe(uiElement.bounds.center(), swipeDirection, durationMs)
waitForAppToSettle()
}
fun swipeFromCenter(swipeDirection: SwipeDirection, durationMs: Long) {
LOGGER.info("Swiping ${swipeDirection.name} from center")
val center = Point(x = cachedDeviceInfo.widthGrid / 2, y = cachedDeviceInfo.heightGrid / 2)
driver.swipe(center, swipeDirection, durationMs)
waitForAppToSettle()
}
fun scrollVertical() {
LOGGER.info("Scrolling vertically")
driver.scrollVertical()
waitForAppToSettle()
}
fun tap(
element: UiElement,
initialHierarchy: ViewHierarchy,
retryIfNoChange: Boolean = true,
waitUntilVisible: Boolean = false,
longPress: Boolean = false,
appId: String? = null,
tapRepeat: TapRepeat? = null,
waitToSettleTimeoutMs: Int? = null
) {
LOGGER.info("Tapping on element: ${tapRepeat ?: ""} $element")
val hierarchyBeforeTap = waitForAppToSettle(initialHierarchy, appId, waitToSettleTimeoutMs) ?: initialHierarchy
val center = (
hierarchyBeforeTap
.refreshElement(element.treeNode)
?.also { LOGGER.info("Refreshed element") }
?.toUiElementOrNull()
?: element
).bounds
.center()
performTap(
x = center.x,
y = center.y,
retryIfNoChange = retryIfNoChange,
longPress = longPress,
initialHierarchy = hierarchyBeforeTap,
tapRepeat = tapRepeat,
waitToSettleTimeoutMs = waitToSettleTimeoutMs
)
if (waitUntilVisible) {
val hierarchyAfterTap = viewHierarchy()
if (hierarchyBeforeTap == hierarchyAfterTap
&& !hierarchyAfterTap.isVisible(element.treeNode)
) {
LOGGER.info("Still no change in hierarchy. Wait until element is visible and try again.")
val hierarchy = waitUntilVisible(element)
tap(
element = element,
initialHierarchy = hierarchy,
retryIfNoChange = false,
waitUntilVisible = false,
longPress = longPress,
tapRepeat = tapRepeat
)
}
}
}
fun tapOnRelative(
percentX: Int,
percentY: Int,
retryIfNoChange: Boolean = true,
longPress: Boolean = false,
tapRepeat: TapRepeat? = null,
waitToSettleTimeoutMs: Int? = null
) {
val x = cachedDeviceInfo.widthGrid * percentX / 100
val y = cachedDeviceInfo.heightGrid * percentY / 100
tap(
x = x,
y = y,
retryIfNoChange = retryIfNoChange,
longPress = longPress,
tapRepeat = tapRepeat,
waitToSettleTimeoutMs = waitToSettleTimeoutMs
)
}
fun tap(
x: Int,
y: Int,
retryIfNoChange: Boolean = true,
longPress: Boolean = false,
tapRepeat: TapRepeat? = null,
waitToSettleTimeoutMs: Int? = null
) {
performTap(
x = x,
y = y,
retryIfNoChange = retryIfNoChange,
longPress = longPress,
tapRepeat = tapRepeat,
waitToSettleTimeoutMs = waitToSettleTimeoutMs
)
}
private fun getNumberOfRetries(retryIfNoChange: Boolean): Int {
return if (retryIfNoChange) 2 else 1
}
private fun performTap(
x: Int,
y: Int,
retryIfNoChange: Boolean = true,
longPress: Boolean = false,
initialHierarchy: ViewHierarchy? = null,
tapRepeat: TapRepeat? = null,
waitToSettleTimeoutMs: Int? = null
) {
val capabilities = driver.capabilities()
if (Capability.FAST_HIERARCHY in capabilities) {
hierarchyBasedTap(x, y, retryIfNoChange, longPress, initialHierarchy, tapRepeat, waitToSettleTimeoutMs)
} else {
screenshotBasedTap(x, y, retryIfNoChange, longPress, initialHierarchy, tapRepeat, waitToSettleTimeoutMs)
}
}
private fun screenshotBasedTap(
x: Int,
y: Int,
retryIfNoChange: Boolean = true,
longPress: Boolean = false,
initialHierarchy: ViewHierarchy? = null,
tapRepeat: TapRepeat? = null,
waitToSettleTimeoutMs: Int? = null
) {
LOGGER.info("Tapping at ($x, $y) using screenshot based logic for wait")
val hierarchyBeforeTap = initialHierarchy ?: viewHierarchy()
val retries = getNumberOfRetries(retryIfNoChange)
repeat(retries) {
if (longPress) {
driver.longPress(Point(x, y))
} else if (tapRepeat != null) {
for (i in 0 until tapRepeat.repeat) {
// subtract execution duration from tap delay
val duration = measureTimeMillis { driver.tap(Point(x, y)) }
val delay = if (duration >= tapRepeat.delay) 0 else tapRepeat.delay - duration
if (tapRepeat.repeat > 1) Thread.sleep(delay) // do not wait for single taps
}
} else driver.tap(Point(x, y))
val hierarchyAfterTap = waitForAppToSettle(waitToSettleTimeoutMs = waitToSettleTimeoutMs)
if (hierarchyAfterTap == null || hierarchyBeforeTap != hierarchyAfterTap) {
LOGGER.info("Something has changed in the UI judging by view hierarchy. Proceed.")
return
}
}
}
private fun hierarchyBasedTap(
x: Int,
y: Int,
retryIfNoChange: Boolean = true,
longPress: Boolean = false,
initialHierarchy: ViewHierarchy? = null,
tapRepeat: TapRepeat? = null,
waitToSettleTimeoutMs: Int? = null
) {
LOGGER.info("Tapping at ($x, $y) using hierarchy based logic for wait")
val hierarchyBeforeTap = initialHierarchy ?: viewHierarchy()
val screenshotBeforeTap: BufferedImage? = ScreenshotUtils.tryTakingScreenshot(driver)
val retries = getNumberOfRetries(retryIfNoChange)
repeat(retries) {
if (longPress) {
driver.longPress(Point(x, y))
} else if (tapRepeat != null) {
for (i in 0 until tapRepeat.repeat) {
// subtract execution duration from tap delay
val duration = measureTimeMillis { driver.tap(Point(x, y)) }
val delay = if (duration >= tapRepeat.delay) 0 else tapRepeat.delay - duration
if (tapRepeat.repeat > 1) Thread.sleep(delay) // do not wait for single taps
}
} else {
driver.tap(Point(x, y))
}
val hierarchyAfterTap = waitForAppToSettle(waitToSettleTimeoutMs = waitToSettleTimeoutMs)
if (hierarchyBeforeTap != hierarchyAfterTap) {
LOGGER.info("Something have changed in the UI judging by view hierarchy. Proceed.")
return
}
val screenshotAfterTap: BufferedImage? = ScreenshotUtils.tryTakingScreenshot(driver)
if (screenshotBeforeTap != null &&
screenshotAfterTap != null &&
screenshotBeforeTap.width == screenshotAfterTap.width &&
screenshotBeforeTap.height == screenshotAfterTap.height
) {
val imageDiff = ImageComparison(
screenshotBeforeTap,
screenshotAfterTap
).compareImages().differencePercent
if (imageDiff > SCREENSHOT_DIFF_THRESHOLD) {
LOGGER.info("Something have changed in the UI judging by screenshot (d=$imageDiff). Proceed.")
return
} else {
LOGGER.info("Screenshots are not different enough (d=$imageDiff)")
}
} else {
LOGGER.info("Skipping screenshot comparison")
}
LOGGER.info("Nothing changed in the UI.")
}
}
private fun waitUntilVisible(element: UiElement): ViewHierarchy {
var hierarchy = ViewHierarchy(TreeNode())
repeat(10) {
hierarchy = viewHierarchy()
if (!hierarchy.isVisible(element.treeNode)) {
LOGGER.info("Element is not visible yet. Waiting.")
MaestroTimer.sleep(MaestroTimer.Reason.WAIT_UNTIL_VISIBLE, 1000)
} else {
LOGGER.info("Element became visible.")
return hierarchy
}
}
return hierarchy
}
fun pressKey(code: KeyCode, waitForAppToSettle: Boolean = true) {
LOGGER.info("Pressing key $code")
driver.pressKey(code)
if (waitForAppToSettle) {
waitForAppToSettle()
}
}
fun findElementByRegexp(regex: Regex, timeoutMs: Long): UiElement {
LOGGER.info("Looking for element by regex: ${regex.pattern} (timeout $timeoutMs)")
return findElementWithTimeout(timeoutMs, Filters.textMatches(regex))?.element
?: throw MaestroException.ElementNotFound(
"No element that matches regex: $regex",
viewHierarchy().root
)
}
fun viewHierarchy(excludeKeyboardElements: Boolean = false): ViewHierarchy {
return ViewHierarchy.from(driver, excludeKeyboardElements)
}
fun findElementByIdRegex(regex: Regex, timeoutMs: Long): UiElement {
LOGGER.info("Looking for element by id regex: ${regex.pattern} (timeout $timeoutMs)")
return findElementWithTimeout(timeoutMs, Filters.idMatches(regex))?.element
?: throw MaestroException.ElementNotFound(
"No element has id that matches regex $regex",
viewHierarchy().root
)
}
fun findElementBySize(width: Int?, height: Int?, tolerance: Int?, timeoutMs: Long): UiElement? {
LOGGER.info("Looking for element by size: $width x $height (tolerance $tolerance) (timeout $timeoutMs)")
return findElementWithTimeout(
timeoutMs,
Filters.sizeMatches(width, height, tolerance).asFilter()
)?.element
}
fun findElementWithTimeout(
timeoutMs: Long,
filter: ElementFilter,
viewHierarchy: ViewHierarchy? = null
): FindElementResult? {
var hierarchy = viewHierarchy ?: ViewHierarchy(TreeNode())
val element = MaestroTimer.withTimeout(timeoutMs) {
hierarchy = viewHierarchy ?: viewHierarchy()
filter(hierarchy.aggregate()).firstOrNull()
}?.toUiElementOrNull()
return if (element == null) {
null
} else {
if (viewHierarchy != null) {
hierarchy = ViewHierarchy(element.treeNode)
}
return FindElementResult(element, hierarchy)
}
}
fun allElementsMatching(filter: ElementFilter): List<TreeNode> {
return filter(viewHierarchy().aggregate())
}
fun waitForAppToSettle(
initialHierarchy: ViewHierarchy? = null,
appId: String? = null,
waitToSettleTimeoutMs: Int? = null
): ViewHierarchy? {
return driver.waitForAppToSettle(initialHierarchy, appId, waitToSettleTimeoutMs)
}
fun inputText(text: String) {
LOGGER.info("Inputting text: $text")
driver.inputText(text)
waitForAppToSettle()
}
fun openLink(link: String, appId: String?, autoVerify: Boolean, browser: Boolean) {
LOGGER.info("Opening link $link for app: $appId with autoVerify config as $autoVerify")
driver.openLink(link, appId, autoVerify, browser)
waitForAppToSettle()
}
fun addMedia(fileNames: List<String>) {
val mediaFiles = fileNames.map { File(it) }
driver.addMedia(mediaFiles)
}
override fun close() {
driver.close()
}
@Deprecated("Use takeScreenshot(Sink, Boolean) instead")
fun takeScreenshot(outFile: File, compressed: Boolean) {
LOGGER.info("Taking screenshot to a file: $outFile")
val absoluteOutFile = outFile.absoluteFile
if (absoluteOutFile.parentFile.exists() || absoluteOutFile.parentFile.mkdirs()) {
outFile
.sink()
.buffer()
.use {
ScreenshotUtils.takeScreenshot(it, compressed, driver)
}
} else {
throw MaestroException.DestinationIsNotWritable(
"Failed to create directory for screenshot: ${absoluteOutFile.parentFile}"
)
}
}
fun takeScreenshot(sink: Sink, compressed: Boolean) {
LOGGER.info("Taking screenshot")
sink
.buffer()
.use {
ScreenshotUtils.takeScreenshot(it, compressed, driver)
}
}
fun startScreenRecording(out: Sink): ScreenRecording {
LOGGER.info("Starting screen recording")
if (screenRecordingInProgress) {
LOGGER.info("Screen recording not started: Already in progress")
return object : ScreenRecording {
override fun close() {
// No-op
}
}
}
screenRecordingInProgress = true
LOGGER.info("Starting screen recording")
val screenRecording = driver.startScreenRecording(out)
val startTimestamp = System.currentTimeMillis()
return object : ScreenRecording {
override fun close() {
LOGGER.info("Stopping screen recording")
// Ensure minimum screen recording duration of 3 seconds.
// This addresses an edge case where the launch command completes too quickly.
val durationPadding = 3000 - (System.currentTimeMillis() - startTimestamp)
if (durationPadding > 0) {
Thread.sleep(durationPadding)
}
screenRecording.close()
screenRecordingInProgress = false
}
}
}
fun setLocation(latitude: String, longitude: String) {
LOGGER.info("Setting location: ($latitude, $longitude)")
driver.setLocation(latitude.toDouble(), longitude.toDouble())
}
fun eraseText(charactersToErase: Int) {
LOGGER.info("Erasing $charactersToErase characters")
driver.eraseText(charactersToErase)
}
fun waitForAnimationToEnd(timeout: Long?) {
val timeout = timeout ?: ANIMATION_TIMEOUT_MS
LOGGER.info("Waiting for animation to end with timeout $timeout")
ScreenshotUtils.waitUntilScreenIsStatic(timeout, SCREENSHOT_DIFF_THRESHOLD, driver)
}
fun setProxy(
host: String = SocketUtils.localIp(),
port: Int
) {
LOGGER.info("Setting proxy: $host:$port")
driver.setProxy(host, port)
}
fun resetProxy() {
LOGGER.info("Resetting proxy")
driver.resetProxy()
}
fun isShutDown(): Boolean {
return driver.isShutdown()
}
fun isUnicodeInputSupported(): Boolean {
return driver.isUnicodeInputSupported()
}
fun isAirplaneModeEnabled(): Boolean {
return driver.isAirplaneModeEnabled()
}
fun setAirplaneModeState(enabled: Boolean) {
driver.setAirplaneMode(enabled)
}
companion object {
private val LOGGER = LoggerFactory.getLogger(Maestro::class.java)
private const val SCREENSHOT_DIFF_THRESHOLD = 0.005 // 0.5%
private const val ANIMATION_TIMEOUT_MS: Long = 15000
fun ios(driver: Driver, openDriver: Boolean = true): Maestro {
if (openDriver) {
driver.open()
}
return Maestro(driver)
}
fun android(driver: Driver, openDriver: Boolean = true): Maestro {
if (openDriver) {
driver.open()
}
return Maestro(driver)
}
fun web(isStudio: Boolean): Maestro {
val driver = WebDriver(isStudio)
driver.open()
return Maestro(driver)
}
}
}