https://github.com/testingbot/robotframework-app-example
RobotFramework Mobile App testing example for TestingBot
https://github.com/testingbot/robotframework-app-example
Last synced: 13 days ago
JSON representation
RobotFramework Mobile App testing example for TestingBot
- Host: GitHub
- URL: https://github.com/testingbot/robotframework-app-example
- Owner: testingbot
- License: mit
- Created: 2026-04-21T13:01:12.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-21T13:05:43.000Z (3 months ago)
- Last Synced: 2026-04-21T15:11:05.232Z (3 months ago)
- Language: RobotFramework
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/testingbot/robotframework-app-example/actions/workflows/test-python.yml)
## TestingBot RobotFramework Appium Example
TestingBot provides an online grid of real devices and emulators/simulators to run automated native app tests on via Appium.
This example demonstrates how to use RobotFramework together with [AppiumLibrary](https://docs.robotframework.org/docs/different_libraries/appium) to run a native mobile app test on a remote TestingBot device.
### Environment Setup
1. Setup
* Clone the repo
* Install the dependencies `pip install -r requirements.txt`
2. TestingBot Credentials
Retrieve your TestingBot Key and Secret from the [TestingBot Dashboard](https://testingbot.com/members/) and export them as environment variables:
```
export TB_KEY=
export TB_SECRET=
```
3. Upload your app
Upload your `.apk` or `.ipa` to TestingBot (or host it on a public URL). See [TestingBot App Automate](https://testingbot.com/support/app-automate/help).
4. Run test:
Android Physical Device example:
```
PYTHONPATH=$PYTHONPATH:. robot test_android_physical.robot
```
Android Emulator example:
```
PYTHONPATH=$PYTHONPATH:. robot test_android_emulator.robot
```
iOS Physical Device example:
```
PYTHONPATH=$PYTHONPATH:. robot test_ios_physical.robot
```
iOS Simulator example:
```
PYTHONPATH=$PYTHONPATH:. robot test_ios_simulator.robot
```
### Resources
##### [TestingBot Documentation](https://testingbot.com/support/app-automate)
##### [AppiumLibrary Documentation](https://docs.robotframework.org/docs/different_libraries/appium)
##### [RobotFramework Documentation](https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html)