mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:38:11 +00:00

There were a couple steps missing to close the remote end. Further, we were not removing the session from the list of active sessions.
8 lines
274 B
Text
8 lines
274 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)
|
|
}
|