diff --git a/Ladybird/WebDriver/main.cpp b/Ladybird/WebDriver/main.cpp index 4ca05b0364d..844efa6d818 100644 --- a/Ladybird/WebDriver/main.cpp +++ b/Ladybird/WebDriver/main.cpp @@ -62,7 +62,7 @@ static ErrorOr launch_headless_browser(ByteString const& socket_path) Array { "--resources", resources.characters(), - "--webdriver-ipc-path", + "--webdriver-content-path", socket_path.characters(), "about:blank", }); diff --git a/Userland/Services/WebDriver/main.cpp b/Userland/Services/WebDriver/main.cpp index 746b8e7297e..0486cee48a9 100644 --- a/Userland/Services/WebDriver/main.cpp +++ b/Userland/Services/WebDriver/main.cpp @@ -28,7 +28,7 @@ static ErrorOr launch_headless_browser(ByteString const& socket_path) { return Core::Process::spawn("/bin/headless-browser"sv, Array { - "--webdriver-ipc-path", + "--webdriver-content-path", socket_path.characters(), "about:blank", });