1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:57:45 +00:00

WebDriver+Browser: Implement POST /session/{id}/window/minimize

This commit is contained in:
Timothy Flynn 2022-11-02 10:01:51 -04:00 committed by Linus Groh
parent 0d5209cee6
commit 11d0489fa3
7 changed files with 40 additions and 0 deletions

View file

@ -53,6 +53,7 @@ public:
ErrorOr<JsonValue, WebDriverError> get_window_rect();
ErrorOr<JsonValue, WebDriverError> set_window_rect(JsonValue const& payload);
ErrorOr<JsonValue, WebDriverError> maximize_window();
ErrorOr<JsonValue, WebDriverError> minimize_window();
ErrorOr<JsonValue, WebDriverError> find_element(JsonValue const& payload);
ErrorOr<JsonValue, WebDriverError> find_elements(JsonValue const& payload);
ErrorOr<JsonValue, WebDriverError> find_element_from_element(JsonValue const& payload, StringView parameter_element_id);