Следующий AppleScript позволит вам установить местоположение симулятора iOS.Должна быть предусмотрена возможность интеграции сценариев такого типа в сценарий модульного тестирования, или чтобы ваш сценарий генерировал эквивалентные AppleEvents.
tell application "iOS Simulator"
activate
end tell
tell application "System Events"
tell process "iOS Simulator"
tell menu bar 1
tell menu bar item "Debug"
tell menu "Debug"
tell menu item "Location"
click
tell menu "Location"
click menu item "Custom Location…"
end tell
end tell
end tell
end tell
end tell
tell window 1
set value of text field 1 to "40.69"
set value of text field 2 to "-74.045"
click button "OK"
end tell
end tell
end tell