-
Notifications
You must be signed in to change notification settings - Fork 306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MA 2747] Check keyboard existence in all foreground apps #2184
Conversation
Make sure to run ./maestro-ios-xctest-runner/build-maestro-ios-runner.sh with every swift change |
@@ -44,7 +44,7 @@ object XCRunnerCLIUtils { | |||
val mapper = jacksonObjectMapper() | |||
val appsMap = mapper.readValue(json, Map::class.java) as Map<String, Any> | |||
|
|||
return appsMap.keys | |||
return appsMap.keys + runningApps(deviceId).keys |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Included the runningApps as well since appsMap was not giving all the list of installed apps.
Includes runningApp as well to make sure we include any system app not in appsMap
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Candidate for Fix of the Year 🏆
We seem to be experiencing the The previous 1.39.2, didn't hit this |
)" This reverts commit 9165c50.
Proposed changes
This PR fixes 2 things:
Testing
Issues fixed