{"id":20932397,"url":"https://github.com/testingbot/testingbot-java","last_synced_at":"2026-04-29T01:07:52.979Z","repository":{"id":50098285,"uuid":"46131601","full_name":"testingbot/testingbot-java","owner":"testingbot","description":"Java Rest Client for TestingBot.com","archived":false,"fork":false,"pushed_at":"2024-05-10T11:26:06.000Z","size":65,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-19T19:17:01.215Z","etag":null,"topics":["api-client","java-client","selenium","testingbot","webdriver"],"latest_commit_sha":null,"homepage":"https://testingbot.com","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/testingbot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-11-13T15:55:32.000Z","updated_at":"2024-05-10T11:26:09.000Z","dependencies_parsed_at":"2024-05-10T08:44:18.171Z","dependency_job_id":"eee8af1c-e87d-473c-b7df-0bd8c83b9e74","html_url":"https://github.com/testingbot/testingbot-java","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testingbot%2Ftestingbot-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testingbot%2Ftestingbot-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testingbot%2Ftestingbot-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/testingbot%2Ftestingbot-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/testingbot","download_url":"https://codeload.github.com/testingbot/testingbot-java/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243324504,"owners_count":20273113,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-client","java-client","selenium","testingbot","webdriver"],"created_at":"2024-11-18T21:48:28.347Z","updated_at":"2026-04-29T01:07:47.936Z","avatar_url":"https://github.com/testingbot.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Maven](https://maven-badges.herokuapp.com/maven-central/com.testingbot/testingbotrest/badge.svg)](https://search.maven.org/artifact/com.testingbot/testingbotrest)\n\nTestingBotREST Java\n====================\n\nA Java client for TestingBot.com's REST API.\n\nUsing this client you can interact with the TestingBot API; update Test info, including pass/fail status and other metadata.\n\n\u003chttps://testingbot.com/support/api\u003e\n\nGetting Started\n----------------\n\nSign up for an account on TestingBot.com - in the member area you will find the `key` and `secret` required to authenticate with the TestingBot API.\n\n```java\nTestingbotREST restApi = new TestingbotREST(\"key\", \"secret\");\n```\n\n*All API methods can throw these exceptions:*\n\n```java\nTestingbotApiException(String json)\nTestingbotUnauthorizedException\n```\n\n### getBrowsers\nRetrieves collection of available browsers\n\u003chttps://testingbot.com/support/api\u003e\n\n\n```java\nArrayList\u003cTestingbotBrowser\u003e devices = restApi.getBrowsers();\n```\n\n### getDevices\nRetrieves collection of available devices\n\u003chttps://testingbot.com/support/api#devices\u003e\n\n\n```java\nArrayList\u003cTestingbotDevice\u003e devices = restApi.getDevices();\n```\n\n### getAvailableDevices\nRetrieves collection of available devices\n\u003chttps://testingbot.com/support/api#available-devices\u003e\n\n\n```java\nArrayList\u003cTestingbotDevice\u003e devices = restApi.getAvailableDevices();\n```\n\n### getDevice\nRetrieves information for a specific device\n\u003chttps://testingbot.com/support/api#devicedetails\u003e\n\n\n```java\nTestingbotDevice device = restApi.getDevice(int deviceId);\n```\n\n### updateTest\nUpdate meta-data for a test\n\u003chttps://testingbot.com/support/api#updatetest\u003e\n\n- `String` status_message\n- `boolean` success\n- `String` build\n- `String` name\n\n\n```java\nboolean success = restApi.updateTest(TestingbotTest test);\nboolean success = restApi.updateTest(String sessionId, Map\u003cString, Object\u003e details);\n```\n\n### stopTest\nStops a running test\n\u003chttps://testingbot.com/support/api#stoptest\u003e\n\n\n```java\nboolean success = restApi.stopTest(String sessionId);\n```\n\n### deleteTest\nDeletes a test from TestingBot\n\u003chttps://testingbot.com/support/api#deletetest\u003e\n\n\n```java\nboolean success = restApi.deleteTest(String sessionId);\n```\n\n### getTest\nRetrieves information regarding a test\n\u003chttps://testingbot.com/support/api#singletest\u003e\n\n\n```java\nTestingbotTest test = restApi.getTest(String sessionId);\n```\n\n### getTests\nRetrieves a collection of tests\n\u003chttps://testingbot.com/support/api#tests\u003e\n\n\n```java\nTestingbotTestCollection test = restApi.getTests(int offset, int count);\n```\n\n### getBuilds\nRetrieves a collection of builds\n\u003chttps://testingbot.com/support/api#builds\u003e\n\n\n```java\nTestingbotBuildCollection builds = restApi.getBuilds(int offset, int count);\n```\n\n### getTestsForBuild\nRetrieves a collection of tests for a specific build\n\u003chttps://testingbot.com/support/api#singlebuild\u003e\n\n\n```java\nTestingbotTestBuildCollection tests = restApi.getTestsForBuild(String buildIdentifier);\n```\n\n### getUserConfig\nRetrieves information about the current user\n\u003chttps://testingbot.com/support/api#user\u003e\n\n\n```java\nTestingbotUser user = restApi.getUserInfo();\n```\n\n### updateUserConfig\nUpdates information about the current user\n\u003chttps://testingbot.com/support/api#useredit\u003e\n\n\n```java\nTestingbotUser user = restApi.updateUserInfo(TestingBotUser);\n```\n\n### getTunnels\nRetrieves tunnels for the current user\n\u003chttps://testingbot.com/support/api#apitunnellist\u003e\n\n\n```java\nArrayList\u003cTestingbotTunnel\u003e tunnels = restApi.getTunnels();\n```\n\n### deleteTunnel\nDeletes/stops a specific tunnel for the current user\n\u003chttps://testingbot.com/support/api#apitunneldelete\u003e\n\n\n```java\nboolean success = restApi.deleteTunnel(String tunnelID);\n```\n\n### uploadToStorage - Local File\nUploads a local file to TestingBot Storage\n\u003chttps://testingbot.com/support/api#upload\u003e\n\n\n```java\nTestingbotStorageUploadResponse uploadResponse = restApi.uploadToStorage(File file);\n```\n\n### uploadToStorage - Remote File\nUploads a remote file to TestingBot Storage\n\u003chttps://testingbot.com/support/api#upload\u003e\n\n\n```java\nTestingbotStorageUploadResponse uploadResponse = restApi.uploadToStorage(String fileUrl);\n```\n\n### getStorageFile\nRetrieves meta-data from a previously stored file\n\u003chttps://testingbot.com/support/api#uploadfile\u003e\n\n\n```java\nTestingBotStorageFile storedFile = restApi.getStorageFile(String appUrl);\n```\n\n### getStorageFiles\nRetrieves meta-data from previously stored files\n\u003chttps://testingbot.com/support/api#filelist\u003e\n\n\n```java\nTestingBotStorageFileCollection fileList = restApi.getStorageFiles(int offset, int count);\n```\n\n### deleteStorageFile\nDeletes a file previously stored in TestingBot Storage\n\u003chttps://testingbot.com/support/api#filedelete\u003e\n\n\n```java\nboolean success = restApi.deleteStorageFile(String appUrl);\n```\n\n### getAuthenticationHash\nCalculates the authenticationHash necessary to share tests\n\u003chttps://testingbot.com/support/other/sharing\u003e\n\n\n```java\nString hash = restApi.getAuthenticationHash(String identifier);\n```\n\nTest\n-----\n\n```java\nmvn -DTB_KEY=... -DTB_SECRET=... test\n```\n\nMaven\n-----\n\n```xml\n\u003cdependencies\u003e\n  \u003cdependency\u003e\n    \u003cgroupId\u003ecom.testingbot\u003c/groupId\u003e\n    \u003cartifactId\u003etestingbotrest\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.8\u003c/version\u003e\n    \u003cscope\u003etest\u003c/scope\u003e\n  \u003c/dependency\u003e\n\u003c/dependencies\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestingbot%2Ftestingbot-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftestingbot%2Ftestingbot-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftestingbot%2Ftestingbot-java/lists"}