You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
browserstack-local-java version: 1.0.3
java version: 8
os type and version: OS X
The text was updated successfully, but these errors were encountered:
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
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
I'm using Java with JUnit5
Code for calling Local:
Dockerfile:
Platform details
The text was updated successfully, but these errors were encountered: