Run existing Appium tests
How the service works
Prerequisites
Code examples
Python (Appium‑Python‑Client)
from appium import webdriver
caps = {
"platformName": "Android",
"deviceName": "Pixel_8_Pro",
"platformVersion": "14",
"automationName": "UiAutomator2",
"app": "https://cdn.example.com/apps/MyApp-1.2.3.apk",
"appPackage": "com.example.myapp",
"appActivity": ".MainActivity"
}
remote_url = "https://<username>:<password>@appium.mobileboost.io/wd/hub"
driver = webdriver.Remote(remote_url, caps)
try:
# your test steps
driver.find_element("accessibility id", "login_button").click()
finally:
driver.quit()JavaScript (WebdriverIO)
Capability reference (most common)
Running in CI (GitHub Actions)
Retrieving artifacts
Last updated