mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:47:35 +00:00
WebDriver: Implement GET /session/{id}/element/{id}/name
endpoint
This commit is contained in:
parent
be6bbdaa3b
commit
a534e61b44
7 changed files with 50 additions and 0 deletions
|
@ -57,6 +57,7 @@ public:
|
|||
ErrorOr<JsonValue, WebDriverError> get_element_attribute(JsonValue const& payload, StringView element_id, StringView name);
|
||||
ErrorOr<JsonValue, WebDriverError> get_element_property(JsonValue const& payload, StringView element_id, StringView name);
|
||||
ErrorOr<JsonValue, WebDriverError> get_element_css_value(JsonValue const& payload, StringView element_id, StringView property_name);
|
||||
ErrorOr<JsonValue, WebDriverError> get_element_tag_name(JsonValue const& payload, StringView element_id);
|
||||
ErrorOr<JsonValue, WebDriverError> get_all_cookies();
|
||||
ErrorOr<JsonValue, WebDriverError> get_named_cookie(String const& name);
|
||||
ErrorOr<JsonValue, WebDriverError> add_cookie(JsonValue const& payload);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue