Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save swhitty/21d02e37bd4ad318113edce8361edc85 to your computer and use it in GitHub Desktop.
Save swhitty/21d02e37bd4ad318113edce8361edc85 to your computer and use it in GitHub Desktop.
import UIKit
public extension UIApplication {
// When unit testing some UIKit accessibility label properties are not updated until either;
// - Accessibility Inspector is connected to the specific simulator once, then closed. 🤷🏻‍♂️
// - Calling accessibilityActivate() one time.
func activateSimulatorForAccessibilityTesting() {
accessibilityActivate()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment