mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 11:25:08 +00:00
27 lines
997 B
Text
27 lines
997 B
Text
#include <AK/URL.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibGfx/Point.h>
|
|
#include <LibGfx/Rect.h>
|
|
#include <LibGfx/ShareableBitmap.h>
|
|
#include <LibGfx/Size.h>
|
|
#include <LibWeb/Cookie/Cookie.h>
|
|
#include <LibWeb/Cookie/ParsedCookie.h>
|
|
#include <LibWeb/WebDriver/ExecuteScript.h>
|
|
|
|
// FIXME: This isn't used here, but the generated IPC fails to compile without this include.
|
|
#include <LibWeb/WebDriver/Response.h>
|
|
|
|
endpoint WebDriverSessionClient {
|
|
quit() =|
|
|
|
|
get_title() => (String title)
|
|
refresh() =|
|
|
back() =|
|
|
forward() =|
|
|
serialize_source() => (String source)
|
|
execute_script(String body, Vector<String> json_arguments, Optional<u64> timeout, bool async) => (Web::WebDriver::ExecuteScriptResultType result_type, String json_result)
|
|
get_all_cookies() => (Vector<Web::Cookie::Cookie> cookies)
|
|
get_named_cookie(String name) => (Optional<Web::Cookie::Cookie> cookie)
|
|
add_cookie(Web::Cookie::ParsedCookie cookie) =|
|
|
update_cookie(Web::Cookie::Cookie cookie) =|
|
|
}
|