/* * Copyright (c) 2024, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include namespace Ladybird { class HeadlessWebView; class Application : public WebView::Application { WEB_VIEW_APPLICATION(Application) public: ~Application(); static Application& the() { return static_cast(WebView::Application::the()); } virtual void create_platform_arguments(Core::ArgsParser&) override; virtual void create_platform_options(WebView::ChromeOptions&, WebView::WebContentOptions&) override; ErrorOr launch_test_fixtures(); HeadlessWebView& create_web_view(Core::AnonymousBuffer theme, Web::DevicePixelSize window_size); HeadlessWebView& create_child_web_view(HeadlessWebView const&, u64 page_index); void destroy_web_views(); template void for_each_web_view(Callback&& callback) { for (auto& web_view : m_web_views) callback(*web_view); } int screenshot_timeout { 1 }; ByteString resources_folder; bool dump_failed_ref_tests { false }; bool dump_layout_tree { false }; bool dump_text { false }; bool dump_gc_graph { false }; bool is_layout_test_mode { false }; size_t test_concurrency { 1 }; ByteString python_executable_path; ByteString test_root_path; ByteString test_glob; bool test_dry_run { false }; bool rebaseline { false }; bool verbose { false }; int per_test_timeout_in_seconds { 30 }; int width { 800 }; int height { 600 }; private: Vector> m_web_views; }; }