diebold2000
diebold2000
I also have the same question. I have a suite where each test should start from Login screen (Home). So basically what I do in io.appium:java-client:7.6.0 is to call in...
ok. It seems there is a workaround (Kotlin): (driver as InteractsWithApps).activateApp(appBundleId) (driver as InteractsWithApps).terminateApp(appBundleId)
Hello @deepakarorawins with client 8.3.0 and server 2.0.1 the following statements work perfectly for me (Kotlin): `fun restartMobileApplication() { if (driver != null) { (driver as InteractsWithApps).terminateApp(Configuration.appBundleId) (driver as InteractsWithApps).activateApp(Configuration.appBundleId)...