-
Notifications
You must be signed in to change notification settings - Fork 284
Closed
Description
Environment: lightpanda/browser:nightly on ARM64 (Raspberry Pi), Docker, Playwright Python
Reproduce:
import asyncio
from playwright.async_api import async_playwright
async def test():
playwright = await async_playwright().start()
browser = await playwright.chromium.connect_over_cdp("ws://IP:9222")
context = browser.contexts[0] if browser.contexts else await browser.new_context()
page = await context.new_page()
await page.goto("http://example.com") # Works
await page.goto("https://www.amazon.pl/") # Crashes intermittently
await browser.close()
await playwright.stop()
asyncio.run(test())Error (Playwright side):
playwright._impl._errors.TargetClosedError: Page.goto: Target page, context or browser has been closed
Error (Docker logs):
TypeError: document.write is not a function
Segmentation fault at address 0x32dcd2c1
/home/runner/work/.../hash_map.zig:1155:39: in createTimeout
Result: Container exits code 133, CDP connection closes.
Note: Sometimes loads successfully (205KB page), but usually crashes. Reproducible with fresh restart.
Metadata
Metadata
Assignees
Labels
No labels