mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
This also lets us more fully implement the "restore the window" method, which requires we block until the document reaches the "visible" state.
10 lines
413 B
Text
10 lines
413 B
Text
#include <LibWeb/WebDriver/Response.h>
|
|
|
|
endpoint WebDriverClient {
|
|
close_session() => ()
|
|
set_is_webdriver_active(bool active) =|
|
|
navigate_to(JsonValue payload) => (Web::WebDriver::Response response)
|
|
get_current_url() => (Web::WebDriver::Response response)
|
|
get_window_rect() => (Web::WebDriver::Response response)
|
|
set_window_rect(JsonValue payload) => (Web::WebDriver::Response response)
|
|
}
|