WebDriver: Temporarily disable site isolation

We will need to update WebDriver to handle the switch of WebContent
processes.
This commit is contained in:
Timothy Flynn 2025-03-11 19:25:57 -04:00 committed by Tim Ledbetter
parent fce5d24e5f
commit 3af3799bbc
Notes: github-actions[bot] 2025-03-12 02:01:53 +00:00

View file

@ -56,6 +56,9 @@ static Vector<ByteString> 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;
}