I can't run my test case after recording the steps

Hi @zanoon2010 ,

Since the package is, like you said, the Google Play store, you probably won’t have permissions to remove it. You could try to run the test without uninstalling the package first by changing the 2nd argument for startApplication to false:

startApplication("D:\com.android.vending.apk", false)

This will just test whatever version is already installed on the device/emulator.

If you really want to remove the application, you could try to follow the instructions at: https://android.stackexchange.com/a/96479

Hope this helps,

Chris

1 Like