Run Mobile Tests on BrowserStack
When to Use
- •Testing mobile apps on real iOS and Android devices
- •Running Appium, XCUITest, or Espresso tests
- •CI/CD integration for mobile app testing
- •Device-specific bug reproduction
MCP Tools Used
- •
takeAppScreenshot- Launch app and capture verification screenshot - •
runAppTestsOnBrowserStack- Run automated mobile tests on real devices - •
getFailureLogs- Retrieve error logs for failed app tests
Steps
1. Verify App Launch (Optional)
Use takeAppScreenshot to verify your app launches correctly:
code
"Take a screenshot of my app on iPhone 15 Pro with iOS 17. App path: /Users/me/app.ipa" "Verify my app launches on Google Pixel 6 with Android 12. App file: /Users/me/app-debug.apk"
What the tool does:
- •Launches your app on specified device
- •Captures a quick screenshot for verification
- •Returns screenshot to confirm app loads correctly
2. Run Automated Tests
Use runAppTestsOnBrowserStack to execute your test suite:
code
"Run Espresso tests from /tests/checkout.zip on Galaxy S21 and Pixel 6 with Android 12. App path: /apps/beta-release.apk" "Run XCUITest tests on iPhone 14 and iPhone 15 Pro with iOS 17. Test suite: /tests/login-tests.zip" "Run my Appium tests on Samsung Galaxy S23 (Android 14). App: /apps/myapp.apk, Tests: /tests/suite.zip"
What the tool does:
- •Uploads your app to BrowserStack (gets bs:// URL)
- •Uploads your test suite
- •Runs tests on specified real devices
- •Returns session IDs and test results
Supported Test Frameworks:
- •Espresso (Android native)
- •XCUITest (iOS native)
- •Appium (cross-platform)
3. Debug Failures
Retrieve error logs using getFailureLogs:
code
"Get error logs from App Automate session ID abc123, Build ID xyz789" "Show me failure logs from my last app test run"
Common Scenarios
Quick App Verification:
code
"Take a screenshot of my app on iPhone 15 Pro to verify it launches" "Check if my app opens correctly on Galaxy S24 with Android 14"
Run Test Suites:
code
"Run Espresso tests on Google Pixel 7 and Samsung Galaxy S23" "Run XCUITest suite on iPhone 14 Pro and iPhone 15" "Run Appium tests across 5 Android devices"
Device Matrix Testing:
code
"Run my tests on iPhone 14, 15, and 15 Pro with iOS 17" "Test on Galaxy S21, S22, S23 with Android 13 and 14"
Debug Test Failures:
code
"Get error logs and screenshots from my failed app test session" "Show me what went wrong in session abc123"
Example Workflow
User: "I need to test my checkout flow on iPhone 15 and Galaxy S24"
Steps:
- •Verify app:
"Take screenshot of my app on iPhone 15 Pro. App: /apps/myapp.ipa" - •Run tests:
"Run XCUITest tests on iPhone 15 Pro and Appium tests on Galaxy S24. App: /apps/myapp.ipa, Tests: /tests/checkout.zip" - •Tool executes:
runAppTestsOnBrowserStackuploads app, runs tests on both devices - •View results and session IDs
- •If failures:
"Get error logs from the failed sessions"
Quick Tips
- •Provide full file paths for app (.ipa or .apk) and test suite (.zip)
- •Specify device name, OS, and version for precise targeting
- •Use
takeAppScreenshotfirst to verify app launches - •Session IDs and Build IDs are returned for debugging
- •Supports Espresso, XCUITest, and Appium test frameworks
- •Tests run on real physical devices, not emulators