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

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

This commit is contained in:
Moustafa Raafat 2022-10-15 18:15:38 +01:00 committed by Linus Groh
parent 443ffab9dc
commit 9132656856
7 changed files with 46 additions and 0 deletions

View file

@ -38,6 +38,7 @@ public:
ErrorOr<JsonValue, HttpError> get_url();
ErrorOr<JsonValue, HttpError> get_title();
ErrorOr<JsonValue, HttpError> refresh();
ErrorOr<JsonValue, HttpError> back();
private:
NonnullRefPtr<Client> m_client;