android-ui-journey-testing
XML-specified Android UI journey testing, interactive step execution, assertion verification, and JSON outcome reporting.
npx skills add sickn33/agentic-awesome-skills --skill android-ui-journey-testing --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Android UI Journey Testing ## Overview This skill outlines the standard workflow for running XML-specified User Journey tests on Android applications. A "journey" is a sequenced set of user actions and state assertions designed to verify end-to-end functionality. The journey XML acts as the source of truth for the app's behavior. The executor proceeds sequentially, performing UI interactions, checking state assertions, and writing a standardized JSON outcome report. ## When to Use - Use when evaluating an Android application's UI behavior against an XML test specification. - Use when automating multi-step user flows (e.g., login, checkout, navigation) and verifying expectations. - Use when running verification tests and generating standardized JSON test reports. - Use when debugging application flows on physical devices or emulators using ADB commands. ## How It Works ```mermaid graph TD A[Parse Journey XML] --> B[Execute Action / Interaction] B --> C{Success?} C -- Yes --> D[Verify State Expectation / Assertion] C -- No/Crash --> G[Mark FAILED & Exit] D -- Passed --> E{More Steps?} D -- Failed --> G E -- Yes --> B E -- No --> F[Output JSON Summary] ``` ### Step 1: Parse the Jour
- Overview
- When to Use
- How It Works
- Step 1: Parse the Journey Specification
- Step 2: Sequential Step Evaluation
- Step 3: Handle Failures and Crashes
- Step 4: Generate JSON Report
- Examples
- Example 1: Full Journey XML Specification
- Example 2: Standard JSON Outcome Report
- Best Practices
- Limitations
- Related Skills
adb shell input tap <x> <y> adb shell input swipe <x1> <y1> <x2> <y2> <duration_ms> adb shell input text "<string>"
What does the android-ui-journey-testing skill do?
XML-specified Android UI journey testing, interactive step execution, assertion verification, and JSON outcome reporting.
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill android-ui-journey-testing --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.