Context:
- Playwright Version: 1.23.0
- Operating System: Windowns
- Python version: 3.10.5
- Browser: Chromium
import asyncio
from playwright.async_api import async_playwright
async def handle_route(route):
await route.continue_()
async def run(playwright):
chromium = playwright.chromium
browser = await chromium.launch(headless=False)
page = await browser.new_page()
await page.route("**/**", handle_route)
await page.goto("https://accounts.hcaptcha.com/demo?sitekey=4c672d35-0701-42b2-88c3-78380b0db560")
input()
async def main():
async with async_playwright() as playwright:
await run(playwright)
asyncio.run(main())
Describe the bug
captcha is not loading for resolve on the browser page.

Context:
Describe the bug
captcha is not loading for resolve on the browser page.