Uses of Class
org.openqa.selenium.Cookie
Package
Description
-
Uses of Cookie in org.openqa.selenium
Modifier and TypeMethodDescriptionCookie.Builder.build()
@Nullable Cookie
WebDriver.Options.getCookieNamed
(String name) Get a cookie with a given name.Modifier and TypeMethodDescriptionWebDriver.Options.getCookies()
Get all the cookies for the current domain.Modifier and TypeMethodDescriptionvoid
Add a specific cookie.void
WebDriver.Options.deleteCookie
(Cookie cookie) Delete a cookie from the browser's "cookie jar". -
Uses of Cookie in org.openqa.selenium.remote
Modifier and TypeMethodDescriptionRemoteWebDriver.RemoteWebDriverOptions.getCookieNamed
(String name) Modifier and TypeMethodDescriptionstatic CommandPayload
DriverCommand.ADD_COOKIE
(Cookie cookie) void
void
RemoteWebDriver.RemoteWebDriverOptions.deleteCookie
(Cookie cookie) -
Uses of Cookie in org.openqa.selenium.support.events
Modifier and TypeMethodDescriptiondefault void
WebDriverListener.afterAddCookie
(WebDriver.Options options, Cookie cookie) This action will be performed each time afterWebDriver.Options.addCookie(Cookie)
default void
WebDriverListener.afterDeleteCookie
(WebDriver.Options options, Cookie cookie) This action will be performed each time afterWebDriver.Options.deleteCookie(Cookie)
default void
WebDriverListener.afterGetCookieNamed
(WebDriver.Options options, String name, Cookie result) This action will be performed each time afterWebDriver.Options.getCookieNamed(String)
default void
WebDriverListener.beforeAddCookie
(WebDriver.Options options, Cookie cookie) This action will be performed each time beforeWebDriver.Options.addCookie(Cookie)
default void
WebDriverListener.beforeDeleteCookie
(WebDriver.Options options, Cookie cookie) This action will be performed each time beforeWebDriver.Options.deleteCookie(Cookie)
Modifier and TypeMethodDescriptiondefault void
WebDriverListener.afterGetCookies
(WebDriver.Options options, Set<Cookie> result) This action will be performed each time afterWebDriver.Options.getCookies()