diff options
author | Tobias Christiansen <tobyase@serenityos.org> | 2022-10-19 13:52:17 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-19 15:32:31 +0200 |
commit | e1fb64abad713f9996cc6c0db4e745cf4b5dbd2e (patch) | |
tree | 3ba3ffb1ab2645cee7302b61eda5ebea833797be /Userland/Services/WebDriver/Session.h | |
parent | d26bbcab42f9764c7da69622225dd67eb3eff079 (diff) | |
download | serenity-e1fb64abad713f9996cc6c0db4e745cf4b5dbd2e.zip |
WebDriver: Implement `POST /session/{id}/element/{id}/elements`
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 6b3fd0d88a..1d4e53ef68 100644 --- a/Userland/Services/WebDriver/Session.h +++ b/Userland/Services/WebDriver/Session.h @@ -46,6 +46,7 @@ public: ErrorOr<JsonValue, HttpError> find_element(JsonValue const& payload); ErrorOr<JsonValue, HttpError> find_elements(JsonValue const& payload); ErrorOr<JsonValue, HttpError> find_element_from_element(JsonValue const& payload, StringView parameter_element_id); + ErrorOr<JsonValue, HttpError> find_elements_from_element(JsonValue const& payload, StringView parameter_element_id); ErrorOr<void, Variant<HttpError, Error>> close_window(); ErrorOr<JsonValue, HttpError> get_all_cookies(); ErrorOr<JsonValue, HttpError> get_named_cookie(String const& name); |