(browser: Browser)
| 45 | |
| 46 | |
| 47 | async def test_start_stop(browser: Browser) -> None: |
| 48 | context = await browser.new_context() |
| 49 | await context.tracing.start() |
| 50 | await context.tracing.stop() |
| 51 | await context.close() |
| 52 | |
| 53 | |
| 54 | async def test_browser_context_should_not_throw_when_stopping_without_start_but_not_exporting( |
nothing calls this directly
no test coverage detected