I need to know how it is possible - After installing apk in my device via adb command, I want to run the app automatically. No user interaction will be used to run and navigate screens. The installed app will be run and navigate from one screen to another automatically. But all screen should be reached. I don't know how it is possible?
Let me share an example. Say, my app has SignIn and SignUp features. After installing the apk in device, I want the app will execute SignIn or SignUp code automatically, without user interaction.
The Actual steps are:
- APK will be installed via adb command.
- After installing apk, app should be run in device automatically, without any user interaction.
- As app will be run without user interaction, I need to know how much time app is taking to SignIn, SignUp or Other screen redering. Right now, focusing SignIn and SignUp time. After getting time (it is easy find out how much time it needs to SignIn) app will send the time in server (via PHP and it is easy to do).
Any Idea from Experts?
Thank you!