{"id":30842732,"url":"https://github.com/webmate-io/webmate-sdk-java","last_synced_at":"2025-09-06T21:06:53.113Z","repository":{"id":24726072,"uuid":"102298969","full_name":"webmate-io/webmate-sdk-java","owner":"webmate-io","description":"SDK for accessing webmate API with Java","archived":false,"fork":false,"pushed_at":"2025-07-29T11:27:18.000Z","size":410,"stargazers_count":12,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-29T13:50:38.642Z","etag":null,"topics":["java","sdk","selenium","test-automation","webdriver","webmate","webmate-api","webmate-sdk-java"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/webmate-io.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.md","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,"zenodo":null}},"created_at":"2017-09-03T22:48:16.000Z","updated_at":"2025-07-29T11:27:22.000Z","dependencies_parsed_at":"2024-01-16T13:49:41.367Z","dependency_job_id":"9bcec48a-421e-48c7-ba28-a02d43625c94","html_url":"https://github.com/webmate-io/webmate-sdk-java","commit_stats":null,"previous_names":[],"tags_count":50,"template":false,"template_full_name":null,"purl":"pkg:github/webmate-io/webmate-sdk-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webmate-io%2Fwebmate-sdk-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webmate-io%2Fwebmate-sdk-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webmate-io%2Fwebmate-sdk-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webmate-io%2Fwebmate-sdk-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webmate-io","download_url":"https://codeload.github.com/webmate-io/webmate-sdk-java/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webmate-io%2Fwebmate-sdk-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273962601,"owners_count":25198601,"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","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["java","sdk","selenium","test-automation","webdriver","webmate","webmate-api","webmate-sdk-java"],"created_at":"2025-09-06T21:06:49.579Z","updated_at":"2025-09-06T21:06:53.088Z","avatar_url":"https://github.com/webmate-io.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# webmate Java SDK \u003cimg src=\"https://avatars.githubusercontent.com/u/13346605\" alt=\"webmate logo\" width=\"28\"/\u003e [![Build Status](https://travis-ci.com/webmate-io/webmate-sdk-java.svg?branch=master)](https://travis-ci.com/webmate-io/webmate-sdk-java) ![Maven Central](https://img.shields.io/maven-central/v/com.testfabrik.webmate.sdk/java-sdk)\n\nThe webmate SaaS test automation platform provides testing services for testers and developers of web applications.\nThis SDK contains wrapper code used to call the webmate API from Java applications.\n\nThe webmate Java SDK is still under development and maintained regularly.\nThis release provides wrappers for the following tasks:\n\n* Perform state extraction in an existing browser session, e.g. one that has been created via Selenium.\n* Execute a new JobRun in the webmate Job service, e.g. to start a Job comparing the layout of web pages in multiple browsers.\n* There is a convenience builder for a BrowserSessionCrossbrowserAnalysis job that may be used to compare the layout of states / web pages from multiple Selenium sessions.\n* There is a convenience builder for a BrowserSessionRegressionAnalysis job that may be used to compare the layout of states / web pages from multiple Selenium sessions.\n\nFor a complete list of recent changes, please refer to the [changelog](CHANGES.md).\n\n\n## Using the SDK in your Project\n\nThis release is also distributed via Maven Central. Just include the following dependency to your Maven pom.xml (or another Maven based build tool):\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.testfabrik.webmate.sdk\u003c/groupId\u003e\n    \u003cartifactId\u003ejava-sdk\u003c/artifactId\u003e\n    \u003cversion\u003e0.63\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nTo build the SDK from its sources, simply clone this repository and\ninstall the compiled artifacts to your local Maven repository with\n\n```bash\n$ mvn install\n```\n\nAfter that, you can include the SDK as a Maven dependency to your project, i.e. either using\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.testfabrik.webmate.sdk\u003c/groupId\u003e\n    \u003cartifactId\u003ejava-sdk\u003c/artifactId\u003e\n    \u003cversion\u003e0.59-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nor using the equivalent statement in a build tool of your choice. \n\n\n## Sample Code\n\nSee the following sample projects:\n* [Java Samples](https://github.com/webmate-io/webmate-sdk-samples)\n* [JavaScript And TypeScript Samples](https://github.com/webmate-io/webmate-sdk-js-samples)\n\nIn order to use these samples, you need to have an account at webmate SaaS or a commercial on-premise installation.\nPlease contact Testfabrik (info@testfabrik.com) if you are interested in evaluating webmate.\n\n\n## webmate API\n\nAlthough, the SDK provides a number of features and convenience wrappers it doesn't exhaust the full potential of the webmate API.\nSee the REST API [Swagger documentation](https://app.webmate.io/api/swagger) for a comprehensive summary of the webmate functionalities.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebmate-io%2Fwebmate-sdk-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebmate-io%2Fwebmate-sdk-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebmate-io%2Fwebmate-sdk-java/lists"}