with one click
appium
Appium mobile app automation. Use for mobile testing.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Appium mobile app automation. Use for mobile testing.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Android Studio IDE with emulator and profiler. Use for Android development.
Atom hackable text editor from GitHub. Use for extensible editing.
Babel JavaScript compiler for compatibility. Use for transpiling.
Biome fast formatter and linter. Use for code quality.
Bitbucket Git repository hosting with Pipelines. Use for Atlassian teams.
Confluence team documentation platform. Use for documentation.
| name | appium |
| description | Appium mobile app automation. Use for mobile testing. |
Appium is an open-source framework for automating native, mobile web, and hybrid applications on iOS, mobile Android, and Windows desktop platforms. It uses the WebDriver protocol.
// wdio.conf.js
capabilities: [
{
platformName: "Android",
"appium:deviceName": "Pixel_3a",
"appium:app": "/path/to.apk",
"appium:automationName": "UiAutomator2",
},
];
// test.js
await $("~Login Button").click(); // Accessibility ID
await $('android=new UiSelector().text("Submit")').click();
Appium uses drivers to interface with underlying frameworks:
A GUI tool to inspect your mobile app's definition (XML), find element IDs, and record scripts.
Do:
~MyID). Avoid XPath which is slow on mobile.appium driver install uiautomator2).Don't: