Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:8
forks:2
updated:February 10, 2026 at 17:05
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| 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: