1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:07:45 +00:00

WebDriver: Implement GET /session/{id}/url endpoint

This commit is contained in:
Sam Atkins 2022-10-10 11:45:21 +01:00 committed by Linus Groh
parent a15d32982a
commit 096fe865c6
3 changed files with 23 additions and 3 deletions

View file

@ -35,6 +35,7 @@ public:
ErrorOr<void> stop();
ErrorOr<void, Variant<HttpError, Error>> delete_window();
ErrorOr<JsonValue, HttpError> post_url(JsonValue const& url);
ErrorOr<JsonValue, HttpError> get_url();
ErrorOr<JsonValue, HttpError> get_title();
private: