Uses of Class
org.openqa.selenium.Cookie
Packages that use Cookie
Package
Description
-
Uses of Cookie in org.openqa.selenium
Methods in org.openqa.selenium that return CookieModifier and TypeMethodDescriptionCookie.Builder.build()
@Nullable Cookie
WebDriver.Options.getCookieNamed
(String name) Get a cookie with a given name.Methods in org.openqa.selenium that return types with arguments of type CookieModifier and TypeMethodDescriptionWebDriver.Options.getCookies()
Get all the cookies for the current domain.Methods in org.openqa.selenium with parameters of type CookieModifier 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
Methods in org.openqa.selenium.remote that return CookieModifier and TypeMethodDescriptionRemoteWebDriver.RemoteWebDriverOptions.getCookieNamed
(String name) Methods in org.openqa.selenium.remote that return types with arguments of type CookieMethods in org.openqa.selenium.remote with parameters of type CookieModifier and TypeMethodDescriptionstatic CommandPayload
DriverCommand.ADD_COOKIE
(Cookie cookie) void
void
RemoteWebDriver.RemoteWebDriverOptions.deleteCookie
(Cookie cookie) -
Uses of Cookie in org.openqa.selenium.support.events
Methods in org.openqa.selenium.support.events with parameters of type CookieModifier 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)
Method parameters in org.openqa.selenium.support.events with type arguments of type CookieModifier and TypeMethodDescriptiondefault void
WebDriverListener.afterGetCookies
(WebDriver.Options options, Set<Cookie> result) This action will be performed each time afterWebDriver.Options.getCookies()