1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:07:45 +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

@ -37,6 +37,7 @@ public:
ErrorOr<JsonValue, HttpError> post_url(JsonValue const& url);
ErrorOr<JsonValue, HttpError> get_url();
ErrorOr<JsonValue, HttpError> get_title();
ErrorOr<JsonValue, HttpError> refresh();
private:
NonnullRefPtr<Client> m_client;