daniera3
daniera3
this not give me content . request.post_data = empty string or mutipart/data without content
upload file "a.txt" and not see content but if use burp or pyppteer or other tool you will get content ```python import asyncio from playwright.async_api import async_playwright def handle_request(request): print(">>",...
a.txt not empty file `import asyncio from playwright.async_api import async_playwright def handle_request(request): print(">>", request.method, request.url) print(request.post_data) async def main(): async with async_playwright() as p: browser = await p.chromium.launch(headless=False, channel="chrome") context...