Class BlockedSetCookieWithReason

java.lang.Object
org.openqa.selenium.devtools.v85.network.model.BlockedSetCookieWithReason

@Beta public class BlockedSetCookieWithReason extends Object
A cookie which was not stored from a response with the corresponding reason.
  • Constructor Details

  • Method Details

    • getBlockedReasons

      public List<SetCookieBlockedReason> getBlockedReasons()
      The reason(s) this cookie was blocked.
    • getCookieLine

      public String getCookieLine()
      The string representing this individual cookie as it would appear in the header. This is not the entire "cookie" or "set-cookie" header which could have multiple cookies.
    • getCookie

      public Optional<Cookie> getCookie()
      The cookie object which represents the cookie which was not stored. It is optional because sometimes complete cookie information is not available, such as in the case of parsing errors.