(async_playwright_object)
| 42 | |
| 43 | @pytest_asyncio.fixture |
| 44 | async def async_browser(async_playwright_object): |
| 45 | browser = await async_playwright_object.chromium.launch_persistent_context(user_data_dir="./user_data", channel="chrome", headless=True, no_viewport=True, locale="en-US") |
| 46 | |
| 47 | yield browser |
| 48 | await browser.close() |
| 49 | |
| 50 | |
| 51 | @pytest_asyncio.fixture |
nothing calls this directly
no outgoing calls
no test coverage detected