(botright_client, **launch_arguments)
| 42 | |
| 43 | @pytest_asyncio.fixture |
| 44 | async def browser(botright_client, **launch_arguments): |
| 45 | browser = await botright_client.new_browser(**launch_arguments) |
| 46 | yield browser |
| 47 | await browser.close() |
| 48 | |
| 49 | |
| 50 | @pytest_asyncio.fixture |
nothing calls this directly
no test coverage detected