mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 20:42:21 +00:00
WebDriver: Implement POST /session/{session id}/execute/async
endpoint
This commit is contained in:
parent
f88a0c51a3
commit
629fbc2cfc
Notes:
sideshowbarker
2024-07-17 11:06:06 +09:00
Author: https://github.com/linusg
Commit: 629fbc2cfc
Pull-request: https://github.com/SerenityOS/serenity/pull/15892
Reviewed-by: https://github.com/FireFox317
Reviewed-by: https://github.com/trflynn89 ✅
4 changed files with 53 additions and 0 deletions
|
@ -75,6 +75,7 @@ private:
|
|||
ErrorOr<JsonValue, WebDriverError> handle_get_element_text(Vector<StringView> const&, JsonValue const& payload);
|
||||
ErrorOr<JsonValue, WebDriverError> handle_get_element_tag_name(Vector<StringView> const&, JsonValue const& payload);
|
||||
ErrorOr<JsonValue, WebDriverError> handle_execute_script(Vector<StringView> const&, JsonValue const& payload);
|
||||
ErrorOr<JsonValue, WebDriverError> handle_execute_async_script(Vector<StringView> const&, JsonValue const& payload);
|
||||
ErrorOr<JsonValue, WebDriverError> handle_get_all_cookies(Vector<StringView> const&, JsonValue const& payload);
|
||||
ErrorOr<JsonValue, WebDriverError> handle_get_named_cookie(Vector<StringView> const&, JsonValue const& payload);
|
||||
ErrorOr<JsonValue, WebDriverError> handle_add_cookie(Vector<StringView> const&, JsonValue const& payload);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue