()
| 38 | |
| 39 | @pytest.fixture(scope="function") |
| 40 | def accessibility_tree_script_browser_env() -> Generator[ |
| 41 | ScriptBrowserEnv, None, None |
| 42 | ]: |
| 43 | env = ScriptBrowserEnv( |
| 44 | headless=HEADLESS, |
| 45 | slow_mo=SLOW_MO, |
| 46 | observation_type="accessibility_tree", |
| 47 | ) |
| 48 | yield env |
| 49 | env.close() |
| 50 | |
| 51 | |
| 52 | @pytest.fixture(scope="function") |
nothing calls this directly
no test coverage detected