(url, browser_name="chromium")
| 474 | |
| 475 | # Even if we patch ascrape_playwright, the while loop won't run since retry_limit is 0, so it should return None. |
| 476 | async def dummy(url, browser_name="chromium"): |
| 477 | return f"<html>Content for {url}</html>" |
| 478 | |
| 479 | monkeypatch.setattr(loader, "ascrape_playwright", dummy) |
| 480 | result = await loader.ascrape_playwright("http://example.com") |
nothing calls this directly
no outgoing calls
no test coverage detected