(page)
| 337 | |
| 338 | |
| 339 | def _click_theme_toggle(page) -> None: |
| 340 | for selector in [ |
| 341 | "button[aria-label='Toggle theme']", |
| 342 | "button[title='Switch to dark theme']", |
| 343 | "button[title='Switch to light theme']", |
| 344 | ]: |
| 345 | try: |
| 346 | page.locator(selector).first.click(timeout=3000) |
| 347 | return |
| 348 | except Exception: |
| 349 | continue |
| 350 | log(" (theme toggle: all selectors failed)") |
| 351 | |
| 352 | |
| 353 | def main() -> None: |