I use KIF framework (http://github.com/kif-framework/KIF) with Xcode Continuous Integration Server for UI testing.
When XCode CI server start app in iOS Simulator system alert "Application would like to use your current location" appears.
I use this delegate
- (void)locationManager:(CLLocationManager *)manager didChangeAuthorizationStatus: (CLAuthorizationStatus)status
to get the notification that user allows to use location and I need it to keep like it is.
- Is it possible to tap OK on this system alert with KIF ? I didn't found out the way.
- Or how to allow application use location service in simulator without showing this alert ?