https://github.com/testingbot/robotframework-web-example
An example on how to use RobotFramework with TestingBot
https://github.com/testingbot/robotframework-web-example
robotframework selenium webdriver
Last synced: 24 days ago
JSON representation
An example on how to use RobotFramework with TestingBot
- Host: GitHub
- URL: https://github.com/testingbot/robotframework-web-example
- Owner: testingbot
- License: mit
- Created: 2023-02-27T13:08:32.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2026-04-21T12:38:55.000Z (28 days ago)
- Last Synced: 2026-04-21T14:38:31.605Z (28 days ago)
- Topics: robotframework, selenium, webdriver
- Language: RobotFramework
- Homepage: https://testingbot.com/support/web-automate/selenium/robotframework
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/testingbot/robotframework-web-example/actions/workflows/test-python.yml)
## TestingBot RobotFramework Example
TestingBot provides an online grid of browsers and mobile devices to run Automated tests on via Selenium WebDriver.
This example demonstrates how to use RobotFramework to run a test on a remote TestingBot browser.
### 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. Run test:
```
PYTHONPATH=$PYTHONPATH:. robot --variable BROWSER:chrome --variable VERSION:latest --variable PLATFORM:MAC test.robot
```
### Resources
##### [TestingBot Documentation](https://testingbot.com/support/web-automate/selenium/robotframework)
##### [SeleniumHQ Documentation](https://www.selenium.dev/documentation/)
##### [RobotFramework Documentation](https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html)