/saucerest-java

Sauce REST API client for Java

Primary LanguageJavaOtherNOASSERTION

SauceREST Java

codecov.io Build Status

A java client for Sauce OnDemand’s REST API. This supercedes the old [sauce-rest-api].

Using this client you can update Job info, including pass/fail status and other information supported.

http://saucelabs.com/docs/sauce-ondemand#alternative-annotation-methods

Usage

SauceREST r = new SauceREST("username", "access-key");
String tunnels = r.getTunnels();

Maven

<dependencies>
  <dependency>
    <groupId>com.saucelabs</groupId>
    <artifactId>saucerest</artifactId>
    <version>LATEST VERSION</version>
    <scope>test</scope>
  </dependency>
</dependencies>

For latest version please check the following link: https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.saucelabs%22%20AND%20a%3A%22saucerest%22