An open API service indexing awesome lists of open source software.

https://github.com/webmate-io/webmate-sdk-java

SDK for accessing webmate API with Java
https://github.com/webmate-io/webmate-sdk-java

java sdk selenium test-automation webdriver webmate webmate-api webmate-sdk-java

Last synced: 2 months ago
JSON representation

SDK for accessing webmate API with Java

Awesome Lists containing this project

README

          

# webmate Java SDK webmate logo [![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)

The webmate SaaS test automation platform provides testing services for testers and developers of web applications.
This SDK contains wrapper code used to call the webmate API from Java applications.

The webmate Java SDK is still under development and maintained regularly.
This release provides wrappers for the following tasks:

* Perform state extraction in an existing browser session, e.g. one that has been created via Selenium.
* Execute a new JobRun in the webmate Job service, e.g. to start a Job comparing the layout of web pages in multiple browsers.
* 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.
* 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.

For a complete list of recent changes, please refer to the [changelog](CHANGES.md).

## Using the SDK in your Project

This release is also distributed via Maven Central. Just include the following dependency to your Maven pom.xml (or another Maven based build tool):

```xml

com.testfabrik.webmate.sdk
java-sdk
0.63

```

To build the SDK from its sources, simply clone this repository and
install the compiled artifacts to your local Maven repository with

```bash
$ mvn install
```

After that, you can include the SDK as a Maven dependency to your project, i.e. either using

```xml

com.testfabrik.webmate.sdk
java-sdk
0.59-SNAPSHOT

```

or using the equivalent statement in a build tool of your choice.

## Sample Code

See the following sample projects:
* [Java Samples](https://github.com/webmate-io/webmate-sdk-samples)
* [JavaScript And TypeScript Samples](https://github.com/webmate-io/webmate-sdk-js-samples)

In order to use these samples, you need to have an account at webmate SaaS or a commercial on-premise installation.
Please contact Testfabrik (info@testfabrik.com) if you are interested in evaluating webmate.

## webmate API

Although, the SDK provides a number of features and convenience wrappers it doesn't exhaust the full potential of the webmate API.
See the REST API [Swagger documentation](https://app.webmate.io/api/swagger) for a comprehensive summary of the webmate functionalities.