I have scenario where I need to remove the tested App from recent App list in Android.
Issue is I am not able to click on recent App button using TC.
Is there any way where we can acomplish this using TC script.
Thanks
Suvidh
I have scenario where I need to remove the tested App from recent App list in Android.
Issue is I am not able to click on recent App button using TC.
Is there any way where we can acomplish this using TC script.
Thanks
Suvidh
You can do this using this code:
var dvcName = "...";
var pckgName = "...";
Mobile.Device(dvcName).ShellExecute("adb shell pm uninstall " + pckgName);