Skip to content

Commit

Permalink
Removing chromeoptions that may cause the zombie process
Browse files Browse the repository at this point in the history
  • Loading branch information
augustocristian committed Aug 16, 2024
1 parent 0d26b62 commit de4f04f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public ChromeUser(String userName, int timeOfWaitInSeconds, String testName, Str

//Problems with the max attempt of retry, solved with : https://github.com/aerokube/selenoid/issues/1124 solved with --disable-gpu
//Problems with flakiness due to screen resolution solved with --start-maximized
String[] arguments = {"--no-sandbox", "--disable-dev-shm-usage", "--allow-elevated-browser", "--disable-gpu", "--start-maximized"};
String[] arguments = {"--start-maximized"};

log.debug("Adding the arguments ({})", Arrays.toString(arguments));
for (String argument : arguments
Expand Down

0 comments on commit de4f04f

Please sign in to comment.