Google News
logo
Appium - Interview Questions
What do you mean by Appium Inspector?
Appium offers an "Inspector" to record and playback, similar to Selenium IDE's record and playback tool. It inspects the Document Object Model to record and play native application behaviour and provides test scripts in any preferred language. You can use the Inspector in Appium Desktop to look up or locate elements of an application.

To locate an element, the Appium inspector provides four options :

* To find elements by id
* To find elements by class name
* To find elements by accessibility id
* To find elements by xpath.

Appium Inspector does not support Windows and instead uses the UIAutomator viewer as an option.
Advertisement