Increase the sleep interval for waiting for an app to launch. I’m sure there’s a better way to do this, but I don’t know what it is yet.
This commit is contained in:
parent
f9c5c5ad60
commit
7a8e0ec4aa
|
@ -103,7 +103,7 @@ public final class UserApp {
|
|||
if app.isFinishedLaunching {
|
||||
return true
|
||||
}
|
||||
Thread.sleep(forTimeInterval: 0.5) // Give the app time to launch. This is ugly.
|
||||
Thread.sleep(forTimeInterval: 1.0) // Give the app time to launch. This is ugly.
|
||||
return true
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue