struct Selenium::Cookie
- Selenium::Cookie
- Struct
- Value
- Object
Included Modules
- JSON::Serializable
Defined in:
selenium/cookie.crConstructors
- .new(name : String, value : String, path : Nil | String = nil, domain : Nil | String = nil, secure : Bool | Nil = nil, http_only : Bool | Nil = nil, expiry : Int64 | Nil = nil, same_site : Nil | String = nil)
- .new(pull : JSON::PullParser)
Instance Method Summary
- #domain : String | Nil
- #domain=(domain : String | Nil)
- #expiry : Int64 | Nil
- #expiry=(expiry : Int64 | Nil)
- #http_only : Bool | Nil
- #http_only=(http_only : Bool | Nil)
- #name : String
- #path : String | Nil
- #path=(path : String | Nil)
- #same_site : String | Nil
- #same_site=(same_site : String | Nil)
- #secure : Bool | Nil
- #secure=(secure : Bool | Nil)
- #value : String
Constructor Detail
def self.new(name : String, value : String, path : Nil | String = nil, domain : Nil | String = nil, secure : Bool | Nil = nil, http_only : Bool | Nil = nil, expiry : Int64 | Nil = nil, same_site : Nil | String = nil)
#