diff options
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 407702d988..a334322958 100644 --- a/Userland/Services/WebDriver/Session.h +++ b/Userland/Services/WebDriver/Session.h @@ -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; |