I’m new to appium and I’m running the calculator example test using the following code: DesiredCapabilities capabilities = new DesiredCapabilities(); capabilities.setCapability("deviceName","AndroidTestDevice"); capabilities.setCapability("platformName","Android"); capabilities.setCapability("appPackage", "com.android.calculator2"); capabilities.setCapability("appActivity","com.android.calculator2.Calculator"); driver = new RemoteWebDriver(new URL("http://0.0.0.0:4723/wd/hub"), capabilities); Appium is running as you can see in the following screenshot: If the emulator is not running, I get the error related to no […]
The post Do we need to manually start the Android emulator for Appium? appeared first on BlogoSfera.