What is dontStopAppOnReset Capabilities?
Posted on October 8, 2019
By Sridatta Pani
Doesn't stop the process of the app under test, before starting the app using adb.
If the app under test is created by another anchor app, setting this false, allows the process of the anchor app to be still alive, during the start of the test app using adb.
In other words, with dontStopAppOnReset set to true, Appium will not include the -S flag in theadb shell am start call. With this capability set to false, the -S flag is included.
Eg:-capabilities.setCapability("dontStopAppOnReset", false);
Valid Values:-true,false
Default value:false