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