mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:37:46 +00:00
WebDriver: Implement GET /session/{id}/element/{id}/css/{name}
This commit is contained in:
parent
202b2be1f2
commit
354a845d65
7 changed files with 73 additions and 0 deletions
|
@ -55,6 +55,7 @@ public:
|
|||
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<JsonValue, HttpError> get_element_property(JsonValue const& payload, StringView element_id, StringView name);
|
||||
ErrorOr<JsonValue, HttpError> get_element_css_value(JsonValue const& payload, StringView element_id, StringView property_name);
|
||||
ErrorOr<JsonValue, HttpError> get_all_cookies();
|
||||
ErrorOr<JsonValue, HttpError> get_named_cookie(String const& name);
|
||||
ErrorOr<JsonValue, HttpError> add_cookie(JsonValue const& payload);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue