Is anybody aware of alternative of Android StartActivity() function for IOS?

Is anybody aware of alternative of Android StartActivity() function for IOS?

3 Likes

Could app extensions be used (https://developer.apple.com/library/ios/documentation/General/Conceptual/ExtensibilityPG/index.html). Is the IOSDriver API that could be used for this purpose?

There is no concept of activity in IOS. First thing that you can only instrument your app provided your app in debug mode signed with valid provisioning profile. So other app installed in your are in release mode and signed with different profile. You can not touch single point other than your app. So simple answer you can not do. And thanks to Apple…

Thank you for the response, that makes sense. We were hoping to switch testing environments at runtime by starting up different “activities” which worked like a charm on android!