Python API wrapper for TestObject
Project description
# testobject-python-api
[](https://travis-ci.org/enriquegh/testobject-python-api) [](https://ci.appveyor.com/project/enriquegh/testobject-python-api/branch/master) [](https://codecov.io/gh/enriquegh/testobject-python-api) [](https://badge.fury.io/py/testobject)
A Python library client for TestObject API
For more on the API you can visit TestObject’s docs [here](https://api.testobject.com/).
## Getting Started
### Installing
To install on your machine run: `bash pip install testobject `
Once installed you can run something like: `python import testobject client = testobject.TestObject('myusername','my_api_key', password='password') # Password only needed if using Session Reports response = client.devices.get_devices() devices = response.json() us_devices = devices['US'] `
## Running the tests
Tests are done with pytest. To run these simply run: `bash pytest `
## Docs
### Get All Devices
`python response = client.devices.get_devices() devices = response.json() us_devices = devices['US'] `
### Get Available Devices
`python response = client.devices.get_available_devices() devices = response.json() us_devices = devices['US'] `
### Get Device
`python response = client.devices.get_device('iPhone_5_free') device = response.json() `
### Get Session Reports `python response = client.devices.get_session_reports(last_days=30, offset=1, limit=50) reports = response.json() `
### Update Appium Suite
`python data = {} data['title'] = "New Suite Title" response = client.suites.update_suite(suite_number,data) content = response.json() `
### Start Appium Suite Report
`python report = {'className': 'TOTestClass', 'dataCenterId': 'US', 'methodName': 'testMethod', 'deviceId': 'iPhone_5_free'} data = [report] # If more than one test and/or class add more reports to the data list response = to.suites.start_suite(suite_number, data) content = response.json() `
### Stop Appium Suite Report
`python response = to.suites.stop_suite(suite_number, suite_report_number) content = response.json() `
### Stop Appium Suite Test
`python response = to.suites.stop_suite_test(suite_number, suite_report_number, suite_test_number, True) content = response.json() `
### Skip Appium Suite Test
`python response = to.suites.stop_suite_test(suite_number, suite_report_number, suite_test_number) content = response.json() `
### Skip Appium Test Report
`python response = to.watcher.skip_test_report(appium_session_id) `
### Send Appium Test Report
`python response = to.watcher.report_test_result(appium_session_id,True) `
### Upload Application to Project
`python response = to.storage.upload_app(upload_app_path, display_name, False) `
### Get Test Report
`python response = to.reports.get_test_report(test_report_id) `
### Get Screenshot
`python response = to.reports.get_screenshot(test_report_id, screenshot_id) `
### Get Session Video
`python response = to.reports.get_video(video_id) `
### Get Appium Log
`python response = to.reports.get_appium_log(test_report_id) `
### Get Device Log
`python response = to.reports.get_device_log(test_report_id) `
### Get Device Vitals Log
`python response = to.reports.get_vitals_log(test_report_id) `
### Get XCUITest Log
`python response = to.reports.get_xcuitest_log(test_report_id) `
## Authors
Enrique Gonzalez - Maintainer - [enriquegh](https://github.com/enriquegh)
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file testobject-1.0.0.tar.gz.
File metadata
- Download URL: testobject-1.0.0.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/2.7.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9744449a5a655d2af776bc52b07e4603429ba56ae73096ec66ee806b6bf334a0
|
|
| MD5 |
0ec24d4ddc3e8418fbf54546436640b1
|
|
| BLAKE2b-256 |
d61cb56e445d37081ccb2cb9f36e065c3b25116be9852c5e3a335715c10b2039
|
File details
Details for the file testobject-1.0.0-py2.py3-none-any.whl.
File metadata
- Download URL: testobject-1.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/2.7.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0488bfeb49584874949aa25291b0ea71d2b0fa500a4e47f7be7ca34f2d91cbae
|
|
| MD5 |
e409e435b0d3520437a0247825174e06
|
|
| BLAKE2b-256 |
c42c788871d11ce668982c62bc598fb69445061ee466d8d6e0fed354f1e9ba01
|