(sync_playwright_object)
| 20 | |
| 21 | @pytest.fixture |
| 22 | def sync_browser(sync_playwright_object): |
| 23 | browser = sync_playwright_object.chromium.launch_persistent_context(user_data_dir="./user_data", channel="chrome", headless=True, no_viewport=True, locale="en-US") |
| 24 | |
| 25 | yield browser |
| 26 | browser.close() |
| 27 | |
| 28 | |
| 29 | @pytest.fixture |
nothing calls this directly
no outgoing calls
no test coverage detected