Cookies
An abstraction to manage cookies on the current domain.
Accessing the object
Reference
Get the list of cookies on the current domain
Get the list of names from the cookies on the current domain
Check if a cookie exists on the current domain
Check if a cookie stores some value
Get a cookie on the current domain
Output
Cookie(name='...', value='...', domain='...', path='/', secure=True, http_only=True, same_site='Strict')
Get a cookie that does not exist the current domain
Add a new cookie on the current domain
Output
Cookie(name='my_cookie', value='value', domain='...', path='/', secure=False, http_only=True, same_site='Strict')