()
| 44 | |
| 45 | @pytest.fixture(scope="session") |
| 46 | async def playwright() -> AsyncGenerator[Playwright, None]: |
| 47 | async with async_playwright() as playwright_object: |
| 48 | yield playwright_object |
| 49 | |
| 50 | |
| 51 | @pytest.fixture(scope="session") |
nothing calls this directly
no test coverage detected