diff options
author | Moustafa Raafat <MoustafaRaafat2@gmail.com> | 2022-10-15 18:15:38 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-15 21:01:59 +0200 |
commit | 91326568565795702fadb50585550a3413e86428 (patch) | |
tree | d1d2c10d82a270a45617855a29e62eabd15197b3 /Userland/Services/WebDriver/Session.h | |
parent | 443ffab9dc01ac74fab1d681921a301f07643a1a (diff) | |
download | serenity-91326568565795702fadb50585550a3413e86428.zip |
WebDriver: Implement POST /session/{id}/back endpoint
Diffstat (limited to 'Userland/Services/WebDriver/Session.h')
-rw-r--r-- | Userland/Services/WebDriver/Session.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/WebDriver/Session.h b/Userland/Services/WebDriver/Session.h index a334322958..c276d9514f 100644 --- a/Userland/Services/WebDriver/Session.h +++ b/Userland/Services/WebDriver/Session.h @@ -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; |