(url)
| 1248 | """Test that the scrape method for selenium backend raises a ValueError when ascrape_undetected_chromedriver fails.""" |
| 1249 | |
| 1250 | async def failing_scraper(url): |
| 1251 | raise Exception("dummy error") |
| 1252 | |
| 1253 | urls = ["http://example.com"] |
| 1254 | loader = ChromiumLoader(urls, backend="selenium", retry_limit=1, timeout=5) |
nothing calls this directly
no outgoing calls
no test coverage detected