Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BrowserStack Local hangs up if started in container, specified in POM #47

Open
yuraku opened this issue Nov 27, 2019 · 0 comments
Open

Comments

@yuraku
Copy link

yuraku commented Nov 27, 2019

When BrowserStack Local is specified in POM is working fine, but when this code is executed in container, the build hangs out.

Expected Behavior

Build in container should work the same as on local.

Actual Behavior

Build process hangs out.

POM file

<browserstack.version>1.0.3</browserstack.version>

        <dependency>
            <groupId>com.browserstack</groupId>
            <artifactId>browserstack-local-java</artifactId>
            <version>${browserstack.version}</version>
        </dependency>

I'm using Java with JUnit5

Code for calling Local:

bsLocal = new Local();
			HashMap<String, String> bsLocalArgs = new HashMap<String, String>();
			bsLocalArgs.put("key", browserstackAccessKey);
			bsLocalArgs.put("localIdentifier", DefaultCapabilities.BROWSERSTACK_LOCAL_IDENTIFIER);
			bsLocalArgs.put("forcelocal", "true");

			try {
				bsLocal.start(bsLocalArgs);
			} catch (Exception e) {
				LOG.error("Something went wrong while starting the local BrowserStack. " + e);
			}

Dockerfile:

FROM maven:3.5-jdk-8-slim as build

ENV browser chrome

WORKDIR /tests
COPY ./project-dir /tests
CMD ["mvn", "clean", "test", "-Denv=${browser}", "-DisBrowserstack=true"]

Platform details

  1. browserstack-local-java version: 1.0.3
  2. java version: 8
  3. os type and version: OS X
@yuraku yuraku changed the title BrowserStack Local can't be started in container if specified in POM BrowserStack Local hangs up if started in container, specified in POM Nov 28, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant