add delay to grodd runner
This commit is contained in:
parent
937f241af6
commit
86a026a846
1 changed files with 7 additions and 2 deletions
|
|
@ -15,9 +15,14 @@ def explore_app(
|
|||
android_sdk: Path | None = None,
|
||||
):
|
||||
if USE_GRODD:
|
||||
time.sleep(5) # let the app load
|
||||
time.sleep(1) # let the app load
|
||||
grodd_runner(
|
||||
"grodd", device, timeout=300, package=package, android_sdk=android_sdk
|
||||
"grodd",
|
||||
device,
|
||||
timeout=300,
|
||||
package=package,
|
||||
android_sdk=android_sdk,
|
||||
slowdown=1.0,
|
||||
)
|
||||
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue