slecault
8 years agoContributor
iOS app Restart
Is there a way to "restart" of an instrumented iOS app? I use the following command with Android: Mobile.Device.Process('com.myapp.abc').Restart;
Yes, I do have the process... the Restart is not one of its methods...
It does not appear with the autocomplete while the app is running on a connected device. If I force the ".restart" , I get "Undeclared identifier: Restart".
my code under iOS:
Mobile.Device.Process('myApp').Restart;
my code under iOS:
Mobile.Device.Process('myApp').Restart;
----------------------------------------------
The examples at the link I posted all have a different format than you are using
Mobile.Device(mydevice).Process(myapp)
Try that and see if Restart shows up?
Marsha,
My understanding is that when no device name is provided, the Current one is used.
Same result with:
Mobile.Device('iPhone de iPod').Process('myApp').Restart;