get_all_cookies
The command to get all cookies in the current browser session.
Syntax
py.get_all_cookies() -> List[Dict]Usage
py.get_all_cookies()
---or--- # store in a variable
cookies = py.get_all_cookies()Arguments
None
Yields
List[Dict]A list of cookie objects. Each cookie object has the following properties:namevaluepathdomainhttpOnlysecureexpiry
Examples
py.set_cookie({"name": "foo", "value": "bar"})
cookie = py.get_all_cookies()[0]
print(cookie["name"]) # "foo"
print(cookie.get("value")) # "bar"py.set_cookie({"name": "foo", "value": "bar"})
py.set_cookie({"name": "yes", "value", "please"})
for cookie in py.get_all_cookies():
print(cookie["name"])
print(cookie.get("value"))Last updated