Agent skill · Frontend

android-ui-journey-testing

XML-specified Android UI journey testing, interactive step execution, assertion verification, and JSON outcome reporting.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Declared author: Owais
Path: skills/android-ui-journey-testing/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. When to Use
  3. How It Works
  4. Step 1: Parse the Journey Specification
  5. Step 2: Sequential Step Evaluation
  6. Step 3: Handle Failures and Crashes
  7. Step 4: Generate JSON Report
  8. Examples
  9. Example 1: Full Journey XML Specification
  10. Example 2: Standard JSON Outcome Report
  11. Best Practices
  12. Limitations
  13. Related Skills
Commands it runs
adb shell input tap <x> <y>
adb shell input swipe <x1> <y1> <x2> <y2> <duration_ms>
adb shell input text "<string>"
More from agentic-awesome-skills
All skills →
About this skill
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.

Keep going