-
Notifications
You must be signed in to change notification settings - Fork 178
/
create_har.py
34 lines (23 loc) · 1.02 KB
/
create_har.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
import asyncio
import json
from playwright.async_api import async_playwright
async def open_browser_and_wait():
async with async_playwright() as p:
browser = await p.chromium.launch(headless=False)
context = await browser.new_context(
record_har_path="network_requests.har", # Path to save the HAR file
record_har_content="embed", # Omit content to make the HAR file smaller
# TODO record_har_url_filter="*", # Optional URL filter
)
page = await context.new_page()
print(
"Browser is open. Press Enter in the terminal when you're ready to close the browser and save cookies..."
)
input("Press Enter to continue and close the browser...")
# Ensure 2FA is completed before saving cookies
cookies = await context.cookies()
with open("cookies.json", "w") as f:
json.dump(cookies, f, indent=4)
await context.close()
await browser.close()
asyncio.run(open_browser_and_wait())