WebDriver: Fix old current_window style

This commit is contained in:
Tobias Christiansen 2022-10-19 22:31:48 +02:00 committed by Linus Groh
commit 92fd97ed63
Notes: sideshowbarker 2024-07-17 06:51:48 +09:00

View file

@ -667,7 +667,7 @@ ErrorOr<JsonValue, HttpError> Session::get_element_attribute(JsonValue const&, S
ErrorOr<JsonValue, HttpError> Session::get_element_property(JsonValue const&, StringView parameter_element_id, StringView name) ErrorOr<JsonValue, HttpError> Session::get_element_property(JsonValue const&, StringView parameter_element_id, StringView name)
{ {
// 1. If the current browsing context is no longer open, return error with error code no such window. // 1. If the current browsing context is no longer open, return error with error code no such window.
auto current_window = get_window_object(); auto current_window = this->current_window();
if (!current_window.has_value()) if (!current_window.has_value())
return HttpError { 404, "no such window", "Window not found" }; return HttpError { 404, "no such window", "Window not found" };