(url)
| 103 | """Test that the scrape method works correctly for selenium by returning the dummy selenium content.""" |
| 104 | |
| 105 | async def dummy_selenium(url): |
| 106 | return f"<html>dummy selenium content for {url}</html>" |
| 107 | |
| 108 | urls = ["http://example.com"] |
| 109 | loader = ChromiumLoader(urls, backend="selenium") |
nothing calls this directly
no outgoing calls
no test coverage detected