-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathget_cookies.py
61 lines (46 loc) · 2.02 KB
/
get_cookies.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = "ipetrash"
import time
from playwright.sync_api import sync_playwright
with sync_playwright() as p:
for browser_type in [p.chromium, p.firefox, p.webkit]:
browser = browser_type.launch()
page = browser.new_page()
print(browser_type.name.upper())
print("Cookies:", page.context.cookies())
for k, v in [
("name", 123),
("foo", "bar"),
("browser", browser_type.name),
]:
page.goto(f"https://httpbin.org/cookies/set/{k}/{v}")
time.sleep(1)
rs = page.goto("https://httpbin.org/cookies")
print("From API:", rs.json())
cookies = page.context.cookies()
print(f"Cookies ({len(cookies)}):")
for cookie in cookies:
print(f" {cookie}")
print()
browser.close()
"""
CHROMIUM
Cookies: []
From API: {'cookies': {'browser': 'chromium', 'foo': 'bar', 'name': '123'}}
Cookies (3):
{'name': 'name', 'value': '123', 'domain': 'httpbin.org', 'path': '/', 'expires': -1, 'httpOnly': False, 'secure': False, 'sameSite': 'Lax'}
{'name': 'foo', 'value': 'bar', 'domain': 'httpbin.org', 'path': '/', 'expires': -1, 'httpOnly': False, 'secure': False, 'sameSite': 'Lax'}
{'name': 'browser', 'value': 'chromium', 'domain': 'httpbin.org', 'path': '/', 'expires': -1, 'httpOnly': False, 'secure': False, 'sameSite': 'Lax'}
FIREFOX
Cookies: []
From API: {'cookies': {'browser': 'firefox', 'foo': 'bar', 'name': '123'}}
Cookies (3):
{'name': 'name', 'value': '123', 'domain': 'httpbin.org', 'path': '/', 'expires': -1, 'httpOnly': False, 'secure': False, 'sameSite': 'None'}
{'name': 'foo', 'value': 'bar', 'domain': 'httpbin.org', 'path': '/', 'expires': -1, 'httpOnly': False, 'secure': False, 'sameSite': 'None'}
{'name': 'browser', 'value': 'firefox', 'domain': 'httpbin.org', 'path': '/', 'expires': -1, 'httpOnly': False, 'secure': False, 'sameSite': 'None'}
WEBKIT
Cookies: []
From API: {'cookies': {}}
Cookies (0):
"""