Start existing application from background without the need of Login to the app again

I would like to know if there is a possibility to use the existing app from background?
Right now when i use Start Existing Application, it logs me out and starts fresh and i have to re-login to the app although i was logged in before.
Manually this doesn’t happen so i guess the implementation of the app is ok but when using the Katalon feature Start Existing application it behaves differently. Am i missing something here?

Hi @Raghu,

Have you try passing false to the second parameter of the keyword Mobile.startApplication(<appFile>, <uninstallAfterCloseApp>).

Like: Mobile.startApplication(‘path/to/your/app’, false)

1 Like