From c14dc77349eca6f9cddd7fbb1d8e216cc9fa6cf8 Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Tue, 18 Jun 2024 08:11:09 +0100 Subject: [PATCH] WebDriver: Launch Ladybird with `--force-new-process` This allows multiple WPT tests to be run in parallel with using the `--processes` option. --- Ladybird/WebDriver/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Ladybird/WebDriver/main.cpp b/Ladybird/WebDriver/main.cpp index af5a15a1c26..4625acce179 100644 --- a/Ladybird/WebDriver/main.cpp +++ b/Ladybird/WebDriver/main.cpp @@ -46,6 +46,7 @@ static ErrorOr launch_browser(ByteString const& socket_path) } arguments.append("--allow-popups"); + arguments.append("--force-new-process"); arguments.append("about:blank");