mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
WebDriver: Print out the entire error when failing to start a session
This commit is contained in:
parent
4dbb73b360
commit
0f0c9f910a
Notes:
sideshowbarker
2024-07-17 08:43:11 +09:00
Author: https://github.com/ADKaster Commit: https://github.com/SerenityOS/serenity/commit/0f0c9f910a Pull-request: https://github.com/SerenityOS/serenity/pull/21614
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ Web::WebDriver::Response Client::new_session(Web::WebDriver::Parameters, JsonVal
|
||||||
auto session = make_ref_counted<Session>(session_id, *this, move(options));
|
auto session = make_ref_counted<Session>(session_id, *this, move(options));
|
||||||
|
|
||||||
if (auto start_result = session->start(m_callbacks); start_result.is_error())
|
if (auto start_result = session->start(m_callbacks); start_result.is_error())
|
||||||
return Web::WebDriver::Error::from_code(Web::WebDriver::ErrorCode::SessionNotCreated, DeprecatedString::formatted("Failed to start session: {}", start_result.error().string_literal()));
|
return Web::WebDriver::Error::from_code(Web::WebDriver::ErrorCode::SessionNotCreated, DeprecatedString::formatted("Failed to start session: {}", start_result.error()));
|
||||||
|
|
||||||
auto& web_content_connection = session->web_content_connection();
|
auto& web_content_connection = session->web_content_connection();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue