browserstack / browserstack-local-java

Java bindings for BrowserStack Local
https://www.browserstack.com
MIT License
18 stars 34 forks source link

browserstack-local-java

Build Status

Java bindings for BrowserStack Local.

Installation

Add this dependency to your project's POM:

<dependency>
    <groupId>com.browserstack</groupId>
    <artifactId>browserstack-local-java</artifactId>
    <version>1.1.4</version>
</dependency>

Example

import com.browserstack.local.Local;

// creates an instance of Local
Local bsLocal = new Local();

// replace <browserstack-accesskey> with your key. You can also set an environment variable - "BROWSERSTACK_ACCESS_KEY".
HashMap<String, String> bsLocalArgs = new HashMap<String, String>();
bsLocalArgs.put("key", "<browserstack-accesskey>");

// starts the Local instance with the required arguments
bsLocal.start(bsLocalArgs);

// check if BrowserStack local instance is running
System.out.println(bsLocal.isRunning());

// stop the Local instance
bsLocal.stop();

Arguments

Apart from the key, all other BrowserStack Local modifiers are optional. For the full list of modifiers, refer BrowserStack Local modifiers. For examples, refer below -

Verbose Logging

To enable verbose logging -

bsLocalArgs.put("v", "true");

Folder Testing

To test local folder rather internal server, provide path to folder as value of this option -

bsLocalArgs.put("f", "/my/awesome/folder");

Force Start

To kill other running Browserstack Local instances -

bsLocalArgs.put("force", "true");

Only Automate

To disable local testing for Live and Screenshots, and enable only Automate -

bsLocalArgs.put("onlyAutomate", "true");

Force Local

To route all traffic via local(your) machine -

bsLocalArgs.put("forcelocal", "true");

Force Proxy

To route all traffic via the proxy specified.

bsLocalArgs.put("forceproxy", "true");

Proxy

To use a proxy for local testing -

bsLocalArgs.put("proxyHost", "127.0.0.1");
bsLocalArgs.put("proxyPort", "8000");
bsLocalArgs.put("proxyUser", "user");
bsLocalArgs.put("proxyPass", "password");

Local Proxy

To use local proxy in local testing -

bsLocalArgs.put("localProxyHost", "127.0.0.1");
bsLocalArgs.put("localProxyPort", "8000");
bsLocalArgs.put("-localProxyUser", "user");
bsLocalArgs.put("-localProxyPass", "password");

PAC (Proxy Auto-Configuration)

To use PAC (Proxy Auto-Configuration) in local testing -

bsLocalArgs.put("-pac-file", "<pac_file_abs_path>");

Local Identifier

If doing simultaneous multiple local testing connections, set this uniquely for different processes -

bsLocalArgs.put("localIdentifier", "randomstring");

Additional Arguments

Binary Path

By default, BrowserStack local wrappers try downloading and executing the latest version of BrowserStack binary in ~/.browserstack or the present working directory or the tmp folder by order. But you can override these by passing the -binarypath argument. Path to specify local Binary path -

bsLocalArgs.put("binarypath", "/browserstack/BrowserStackLocal");

Logfile

To save the logs to the file while running with the '-v' argument, you can specify the path of the file. By default the logs are saved in the local.log file in the present woring directory. To specify the path to file where the logs will be saved -

bsLocalArgs.put("v", "true");
bsLocalArgs.put("logFile", "/browserstack/logs.txt");

Contribute

Compile Instructions

To compile the package, mvn compile.

To run the test suite run, mvn test.

Reporting bugs

You can submit bug reports either in the Github issue tracker.

Before submitting an issue please check if there is already an existing issue. If there is, please add any additional information give it a "+1" in the comments.

When submitting an issue please describe the issue clearly, including how to reproduce the bug, which situations it appears in, what you expect to happen, what actually happens, and what platform (operating system and version) you are using.

Pull Requests

We love pull requests! We are very happy to work with you to get your changes merged in, however, please keep the following in mind.