mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:17:35 +00:00
WebDriver: Implement DELETE /session/{id}/cookie/{name}
endpoint
This commit is contained in:
parent
0d6dc2492d
commit
fefe447cf5
4 changed files with 31 additions and 0 deletions
|
@ -58,6 +58,7 @@ private:
|
|||
ErrorOr<JsonValue, HttpError> handle_forward(Vector<StringView>, JsonValue const& payload);
|
||||
ErrorOr<JsonValue, HttpError> handle_get_all_cookies(Vector<StringView>, JsonValue const& payload);
|
||||
ErrorOr<JsonValue, HttpError> handle_get_named_cookie(Vector<StringView>, JsonValue const& payload);
|
||||
ErrorOr<JsonValue, HttpError> handle_delete_cookie(Vector<StringView>, JsonValue const& payload);
|
||||
ErrorOr<JsonValue, HttpError> handle_delete_all_cookies(Vector<StringView>, JsonValue const& payload);
|
||||
|
||||
ErrorOr<Session*, HttpError> find_session_with_id(StringView session_id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue