Appium also provides to remove any application from the device programmatically by just passing the the package name of the application.
Suppose that we have test many applications on the same mobile device and the capacity of the device is not sufficient to install all the application at the same time and run the test. So, we will first install one application on the device and run the suite for that application and then remove the application from the device and again install the second application. In this manner we will test all the application on the same device having low space.
The method through which we will remove the application from the device is removeApp(String bundleId)
bundleId: This is the package name of the application that we want to uninstall from the device.
0 Comment(s)