# Send Mobile Appium Test to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mobile-appium-test",
    "name": "Mobile Appium Test",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/never112/mobile-appium-test",
    "canonicalUrl": "https://clawhub.ai/never112/mobile-appium-test",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mobile-appium-test",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mobile-appium-test",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mobile-appium-test",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T17:53:01.284Z",
      "expiresAt": "2026-05-12T17:53:01.284Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mobile-appium-test",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mobile-appium-test",
        "contentDisposition": "attachment; filename=\"mobile-appium-test-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mobile-appium-test"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mobile-appium-test"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mobile-appium-test",
    "downloadUrl": "https://openagent3.xyz/downloads/mobile-appium-test",
    "agentUrl": "https://openagent3.xyz/skills/mobile-appium-test/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mobile-appium-test/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mobile-appium-test/agent.md"
  }
}
```
## Documentation

### Mobile Appium Test

Android UI automation testing using Appium with USB-connected real devices.

### Prerequisites

Required tools (must be installed):

ADB (Android Debug Bridge) - part of Android SDK
Appium Server (v2.x recommended)
Appium Doctor (npm install -g @appium/doctor)

Verify installation:

adb version
appium --version
appium doctor

### Device Connection

GoalCommandList connected devicesadb devicesGet device infoadb shell getprop ro.build.version.releaseRestart ADB serveradb kill-server && adb start-serverUSB debug authorizationCheck phone for authorization prompt

### Appium Server

GoalCommandStart Appiumappium --address 127.0.0.1 --port 4723Start with relaxed securityappium --relaxed-securityCheck Appium statuscurl http://127.0.0.1:4723/status

### Common Appium Operations

GoalEndpoint/ActionStart sessionPOST /session with capabilitiesFind elementPOST /session/{id}/elementClick elementPOST /session/{id}/element/{id}/clickSend keysPOST /session/{id}/element/{id}/valueTake screenshotGET /session/{id}/screenshotGet page sourceGET /session/{id}/sourceQuit sessionDELETE /session/{id}

### 1. Verify Device Connection

adb devices

Ensure device shows device status (not unauthorized or offline).

### 2. Start Appium Server

appium --address 127.0.0.1 --port 4723 --relaxed-security

### 3. Run Test

Use desired capabilities for USB device:

{
  "platformName": "Android",
  "deviceName": "device",
  "udid": "<device-udid>",
  "app": "/path/to/app.apk",
  "automationName": "UiAutomator2",
  "noReset": true
}

### 4. Common Test Scenarios

Install app: adb install app.apk
Launch app: Appium appActivity capability
Find element by ID: find_element("id", "com.example:id/button")
Find element by text: find_element("xpath", "//*[@text='Submit']")
Swipe: Appium touch action
Get logs: adb logcat

### Error Handling

ErrorCauseSolutiondevice not foundUSB connection issueCheck adb devices, restart ADB serverunauthorizedUSB debug not authorizedUnlock phone, authorize the computerno such elementElement not foundUse find_elements with wait, check page sourcesession not createdCapability mismatchVerify UDID, platform version, app path

### Notes

Always use UdID from adb devices for real device testing
Use UiAutomator2 as automation engine for Android
noReset: true preserves app state between sessions
For WiFi debugging: adb tcpip 5555 then adb connect <IP>:5555
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: never112
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T17:53:01.284Z
- Expires at: 2026-05-12T17:53:01.284Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mobile-appium-test)
- [Send to Agent page](https://openagent3.xyz/skills/mobile-appium-test/agent)
- [JSON manifest](https://openagent3.xyz/skills/mobile-appium-test/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mobile-appium-test/agent.md)
- [Download page](https://openagent3.xyz/downloads/mobile-appium-test)