1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:47: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

@ -20,6 +20,7 @@ endpoint WebDriverSessionClient {
set_window_size(Gfx::IntSize size) =|
set_window_position(Gfx::IntPoint position) =|
maximize_window() =|
minimize_window() =|
get_all_cookies() => (Vector<Web::Cookie::Cookie> cookies)
get_named_cookie(String name) => (Optional<Web::Cookie::Cookie> cookie)
add_cookie(Web::Cookie::ParsedCookie cookie) =|