mirror of
https://github.com/RGBCube/serenity
synced 2025-05-26 01:45:06 +00:00
17 lines
402 B
Text
17 lines
402 B
Text
#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)
|
|
|
|
}
|