Skip to content

Commit

Permalink
fix: Use headless browser
Browse files Browse the repository at this point in the history
  • Loading branch information
anarsultanov committed Nov 5, 2023
1 parent 3feef01 commit 11279f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static void beforeAll() {

client = ClientBuilder.newClient();
playwright = Playwright.create();
var browser = playwright.chromium().launch(new BrowserType.LaunchOptions().setHeadless(false));
var browser = playwright.chromium().launch(new BrowserType.LaunchOptions().setHeadless(true));

var keycloakUrl = keycloak.getAuthServerUrl();
var mailhogUrl = "http://%s:%d/".formatted(mailhog.getHost(), mailhog.getMappedPort(MAILHOG_HTTP_PORT));
Expand Down

0 comments on commit 11279f6

Please sign in to comment.