1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 13:37:44 +00:00

WebDriver: Implement POST /session/{id}/refresh endpoint

This commit is contained in:
Tobias Christiansen 2022-10-14 18:09:33 +02:00 committed by Sam Atkins
parent 8653903bee
commit 1179d951f6
7 changed files with 48 additions and 0 deletions

View file

@ -53,6 +53,7 @@ private:
ErrorOr<JsonValue, HttpError> handle_get_url(Vector<StringView>, JsonValue const& payload);
ErrorOr<JsonValue, HttpError> handle_get_title(Vector<StringView>, JsonValue const& payload);
ErrorOr<JsonValue, HttpError> handle_delete_window(Vector<StringView>, JsonValue const& payload);
ErrorOr<JsonValue, HttpError> handle_refresh(Vector<StringView>, JsonValue const& payload);
ErrorOr<Session*, HttpError> find_session_with_id(StringView session_id);
JsonValue make_json_value(JsonValue const&);