mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 03:56:16 +00:00
WebDriver: Implement GET /session/{id}/element/{id}/attribute/{name}
This commit is contained in:
parent
3f5a620b5d
commit
249350a7a3
Notes:
sideshowbarker
2024-07-17 05:21:20 +09:00
Author: https://github.com/TobyAsE
Commit: 249350a7a3
Pull-request: https://github.com/SerenityOS/serenity/pull/15698
Reviewed-by: https://github.com/linusg ✅
7 changed files with 65 additions and 0 deletions
|
@ -47,6 +47,7 @@ public:
|
|||
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<JsonValue, HttpError> get_element_attribute(JsonValue const& payload, StringView element_id, StringView name);
|
||||
ErrorOr<void, Variant<HttpError, Error>> close_window();
|
||||
ErrorOr<JsonValue, HttpError> get_all_cookies();
|
||||
ErrorOr<JsonValue, HttpError> get_named_cookie(String const& name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue