module Webdriver::Commands::Cookies
Direct including types
Defined in:
webdriver/commands/cookies.crInstance Method Summary
- #add_cookie(name : String, value : String, path : String = "/", domain : String | Nil = nil, secure : Bool = false, http_only : Bool = false, expires : Time | Int32 | Nil = nil, same_site : HTTP::Cookie::SameSite | Nil = nil)
- #add_cookie(cookie c : HTTP::Cookie)
- #add_cookies(cookies : HTTP::Cookies)
- #delete_all_cookies
- #delete_cookie(name)
- #get_all_cookies
- #get_named_cookie(name)
Instance Method Detail
def add_cookie(name : String, value : String, path : String = "/", domain : String | Nil = nil, secure : Bool = false, http_only : Bool = false, expires : Time | Int32 | Nil = nil, same_site : HTTP::Cookie::SameSite | Nil = nil)
#