Created
May 1, 2020 07:23
-
-
Save swhitty/21d02e37bd4ad318113edce8361edc85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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