Files
ladybird/Userland/Applications/Browser/WebDriverSessionClient.ipc
2022-10-16 16:32:59 +02:00

18 lines
402 B
Plaintext

#include <AK/URL.h>
#include <AK/Vector.h>
#include <LibWeb/Cookie/Cookie.h>
endpoint WebDriverSessionClient {
quit() =|
get_url() => (URL url)
set_url(URL url) =|
get_title() => (String title)
refresh() =|
back() =|
forward() =|
get_all_cookies() => (Vector<Web::Cookie::Cookie> cookies)
get_named_cookie(String name) => (Optional<Web::Cookie::Cookie> cookie)
}