com.browserstack.appautomate.AppAutomate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automate-client-java Show documentation
Show all versions of automate-client-java Show documentation
Java bindings for BrowserStack Automate REST API
The newest version!
package com.browserstack.appautomate;
import java.io.FileNotFoundException;
import com.browserstack.automate.exception.AppAutomateException;
import com.browserstack.automate.exception.InvalidFileExtensionException;
import com.browserstack.automate.model.AppUploadResponse;
public interface AppAutomate {
AppUploadResponse uploadApp(String filePath)
throws AppAutomateException, FileNotFoundException, InvalidFileExtensionException;
}