mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 17:15:26 +00:00
18 lines
402 B
Plaintext
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)
|
|
|
|
}
|