Skip to content

Commit

Permalink
e2e-tests: Delay browser setup
Browse files Browse the repository at this point in the history
  • Loading branch information
cruizba committed Dec 9, 2024
1 parent c114907 commit 1faf9db
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,12 @@ private static boolean setupBrowserAux(BrowserNames browser, GenericContainer<?>
}
if (!containerAlreadyRunning) {
container.start();
try {
// Avoid error starting container
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
containers.add(container);
return true;
}
Expand Down

0 comments on commit 1faf9db

Please sign in to comment.