https://github.com/testingbot/testingbot_pyunit
TestingBot.com package to be used with PyUnit and Selenium
https://github.com/testingbot/testingbot_pyunit
python pyunit testingbot webdriver
Last synced: 3 months ago
JSON representation
TestingBot.com package to be used with PyUnit and Selenium
- Host: GitHub
- URL: https://github.com/testingbot/testingbot_pyunit
- Owner: testingbot
- License: mit
- Created: 2011-08-13T21:04:28.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2019-01-22T13:42:34.000Z (over 6 years ago)
- Last Synced: 2025-01-19T19:17:11.486Z (4 months ago)
- Topics: python, pyunit, testingbot, webdriver
- Language: Python
- Homepage: https://testingbot.com
- Size: 46.9 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/testingbot/testingbot_pyunit)
## TestingBot - Python & PyUnit
TestingBot provides an online grid of browsers and mobile devices to run Automated tests on via Selenium WebDriver.
This example demonstrates how to use Python with PyUnit to run tests across several browsers.### Environment Setup
1. TestingBot Credentials
* Add your TestingBot Key and Secret as environmental variables. You can find these in the [TestingBot Dashboard](https://testingbot.com/members/).
```
$ export TESTINGBOT_KEY=
$ export TESTINGBOT_SECRET=
```### Running Tests
* Sample Test:
```
$ python test/test.py
```
You will see the test result in the [TestingBot Dashboard](https://testingbot.com/members/)### Resources
##### [TestingBot Documentation](https://testingbot.com/support/)##### [SeleniumHQ Documentation](http://www.seleniumhq.org/docs/)
##### [PyUnit Documentation](https://docs.python.org/3/library/unittest.html)