https://github.com/testingbot/app-automate-java
Java Library for TestingBot's App Automate
https://github.com/testingbot/app-automate-java
automate java testingbot webdriver
Last synced: 3 months ago
JSON representation
Java Library for TestingBot's App Automate
- Host: GitHub
- URL: https://github.com/testingbot/app-automate-java
- Owner: testingbot
- License: apache-2.0
- Created: 2019-03-01T10:52:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-01T10:59:09.000Z (over 6 years ago)
- Last Synced: 2025-01-19T19:17:11.912Z (4 months ago)
- Topics: automate, java, testingbot, webdriver
- Language: Java
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
App Automate Java
====================Currently this serves as an example on how to upload an .apk or .ipa file to [TestingBot Storage](https://testingbot.com/support/api#upload).
Getting Started
----------------Simply set your TestingBot key and secret as environment variable:
```bash
export TESTINGBOT_KEY = ...
export TESTINGBOT_SECRET = ..
```Next, build the project:
```bash
mvn compile
```Now you can upload a file to TestingBot Storage:
```bash
java -jar uploadApp-1.0.3-jar-with-dependencies.jar "/Users/../sample.apk"
```This command should return a successful response:
```
{"app_url":"tb://8130affdac207ff0baa259e8"}
```This `tb://` url can now be used in your Automated App Tests on TestingBot.