Appium always reinstall the app while executing the script .... how to resolve the issue?

appium always reinstall the application and install again while executing the script… how to resolve the error…any help???reset is not working…

You Have to set desired values for noReset and fullReset.

In your capabilities add up these:

capabilities.setCapability(“noReset”,“true”);
capabilities.setCapability(“fullReset”,“false”);

Here no reset is used to reset app state before this session. So if you dont want to reset it then set the value as true.
And fullReset resets app state by uninstalling app instead of clearing app data. Hence set the value as false.

Hope this helps

1 Like

This also can achieve from appium server setting option.

You can easily do it from Appium settings :–>