Skip navigation links

Package io.appium.droiddriver.helpers

Helper classes for writing an Android UI test framework using DroidDriver.

See: Description

Package io.appium.droiddriver.helpers Description

Helper classes for writing an Android UI test framework using DroidDriver.

UI test framework design principles

A UI test framework should model the UI of the AUT in a hierarchical way to maximize code reuse. Common interactions should be abstracted as methods of page objects. Uncommon interactions may not be abstracted, but carried out using "driver" directly.

The organization of the entities (pages, components) does not need to strictly follow the AUT structure. The UI model can be greatly simplified to make it easy to use.

In general the framework should follow these principles:

Common pitfalls

Skip navigation links