I am trying to run a test file created on eclipse using appium. When I execute the test on a real android device connected to the system, I get the following error:
Enco
I follow the guide here
Type the following command to Terminal(not execute yet)
adb shell dumpsys window windows | grep -E 'mCurrentFocus|mFocusedApp'
Manually open app on device and execute the above command really quick to find the startActivity.
Copy value of Package and Activity from mFocusedApp=
Check the Activity start-able
adb shell am start -n package.android/.activity.SplashActivity
Set of Capabilities DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability("device", "Android");
capabilities.setCapability("platformName", "Android");
capabilities.setCapability("deviceName", "Galaxy Note9");
capabilities.setCapability("appWaitPackage", "package.android");
capabilities.setCapability("appWaitActivity", ".activity.SplashActivity");
capabilities.setCapability("appPackage", "package.android");
capabilities.setCapability("appActivity", ".activity.SplashActivity");
capabilities.setCapability("appWaitDuration", 10000);//this is way optional, 20000 by default
capabilities.setCapability("app", newApp.getAbsolutePath());