Run the image locally the same as any other Docker container.
Copy
Ask AI
docker composedocker up
Once the container is running, you can connect to it like this:
Copy
Ask AI
from playwright.sync_api import sync_playwrightplaywright = sync_playwright().start()browser = playwright.chromium.connect_over_cdp("ws://localhost:8000/ws") page = browser.new_page()await page.goto("https://github.com/finic-ai/finic")# ... The rest of your automation code