diff --git a/Services/WebDriver/main.cpp b/Services/WebDriver/main.cpp index 1701d49d002..a17316bd6f8 100644 --- a/Services/WebDriver/main.cpp +++ b/Services/WebDriver/main.cpp @@ -56,6 +56,9 @@ static Vector create_arguments(ByteString const& socket_path, bool f if (debug_process.has_value()) arguments.append(ByteString::formatted("--debug-process={}", debug_process.value())); + // FIXME: WebDriver does not yet handle the WebContent process switch brought by site isolation. + arguments.append("--disable-site-isolation"sv); + arguments.append("about:blank"sv); return arguments; }