Class BlockedCookieWithReason
- java.lang.Object
-
- org.openqa.selenium.devtools.network.model.BlockedCookieWithReason
-
@Beta public class BlockedCookieWithReason extends java.lang.Object
A cookie with was not sent with a request with the corresponding reason.
-
-
Constructor Summary
Constructors Constructor Description BlockedCookieWithReason(CookieBlockedReason blockedReason, Cookie cookie)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CookieBlockedReason
getBlockedReason()
The reason the cookie was blocked.Cookie
getCookie()
The cookie object representing the cookie which was not sent.
-
-
-
Constructor Detail
-
BlockedCookieWithReason
public BlockedCookieWithReason(CookieBlockedReason blockedReason, Cookie cookie)
-
-
Method Detail
-
getBlockedReason
public CookieBlockedReason getBlockedReason()
The reason the cookie was blocked.
-
getCookie
public Cookie getCookie()
The cookie object representing the cookie which was not sent.
-
-