diff --git a/src/devices/IOSDevice.tsx b/src/devices/IOSDevice.tsx index a489bcf1f..9389f8a8b 100644 --- a/src/devices/IOSDevice.tsx +++ b/src/devices/IOSDevice.tsx @@ -60,6 +60,11 @@ export default class IOSDevice extends BaseDevice { }); } + navigateToLocation(location: string) { + const command = `xcrun simctl openurl booted "${location}"`; + exec(command); + } + teardown() { if (this.log) { this.log.kill();