mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
headless-browser: Do not immediately exit when running under WebDriver
We need to spin the Application's event loop.
This commit is contained in:
parent
d08d305399
commit
34b8784dd9
Notes:
github-actions[bot]
2024-10-22 03:25:53 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/34b8784dd91 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1907 Reviewed-by: https://github.com/tcl3 ✅
1 changed files with 4 additions and 5 deletions
|
@ -98,10 +98,9 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
return completion.result == Ladybird::TestResult::Pass ? 0 : 1;
|
||||
}
|
||||
|
||||
if (!WebView::Application::chrome_options().webdriver_content_ipc_path.has_value()) {
|
||||
auto timer = TRY(load_page_for_screenshot_and_exit(Core::EventLoop::current(), view, url, app->screenshot_timeout));
|
||||
return app->execute();
|
||||
}
|
||||
RefPtr<Core::Timer> timer;
|
||||
if (!WebView::Application::chrome_options().webdriver_content_ipc_path.has_value())
|
||||
timer = TRY(load_page_for_screenshot_and_exit(Core::EventLoop::current(), view, url, app->screenshot_timeout));
|
||||
|
||||
return 0;
|
||||
return app->execute();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue