May 30, 2016
Mobile Automation Testing with Selenium and Appium

 
Appium Inspector and UI automator viewer tool are very handy when identifying some visual elements in the applications. Appium inspector is a combination of the Appium server itself and the inspector, that is used to discover all the visible elements of your app while developing your test scripts.This inspector works well for iOS, but for Android there are some problem areas with it. To that end, we encourage the use of ui automator viewer.
The UI automator viewer tool provides a convenient GUI to scan and analyze the UI components displaying on android device.You can use this tool to inspect the layout hierarchy and view the properties of UI components that are visible on the foreground of the device.This information lets you create more fine-grained tests using UI Automator, for example by creating a UI selector that matches a specific visible property.The UI Automator API is bundled in the UI Automator.jar file under the /platforms/ directory. The API includes these key classes, interfaces, and exceptions that allow you to capture and manipulate UI components on the target app.Appium runs on real devices and emulators. It takes the Selenium commands from your test code and translates them into a readable format for UI Automator, using the WebDriver JSON Wire Protocol. The UI Automator testing framework lets you test your user interface (UI) efficiently by creating automated functional and UI test cases that can be run against your app on one or more devices.




