mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 17:24:48 -05:00
WebDriver: Use correct WebDriver IPC path argument name
Previously, the incorrect name for this argument was being used when attempting to launch `headless-browser`.
This commit is contained in:
parent
ce5f2861d8
commit
ae51fbd5de
Notes:
github-actions[bot]
2024-08-01 20:41:11 +00:00
Author: https://github.com/tcl3 Commit: https://github.com/LadybirdBrowser/ladybird/commit/ae51fbd5dee Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/927
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ static ErrorOr<pid_t> launch_headless_browser(ByteString const& socket_path)
|
|||
Array {
|
||||
"--resources",
|
||||
resources.characters(),
|
||||
"--webdriver-ipc-path",
|
||||
"--webdriver-content-path",
|
||||
socket_path.characters(),
|
||||
"about:blank",
|
||||
});
|
||||
|
|
|
@ -28,7 +28,7 @@ static ErrorOr<pid_t> 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",
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue