(
browser_factory: "Callable[..., asyncio.Future[Browser]]",
)
| 24 | |
| 25 | @pytest.fixture(scope="session") |
| 26 | async def browser( |
| 27 | browser_factory: "Callable[..., asyncio.Future[Browser]]", |
| 28 | ) -> AsyncGenerator[Browser, None]: |
| 29 | browser = await browser_factory(proxy={"server": "dummy"}) |
| 30 | yield browser |
| 31 | await browser.close() |
| 32 | |
| 33 | |
| 34 | async def test_should_use_proxy( |
nothing calls this directly
no test coverage detected