(reference_id: int | str | None)
| 635 | |
| 636 | @staticmethod |
| 637 | def _has_reference(reference_id: int | str | None) -> bool: |
| 638 | return reference_id is not None and str(reference_id).strip() != "" |
| 639 | |
| 640 | def _screenshot_output_path(self, browser_id: int, path: str = "") -> tuple[Path, str, str]: |
| 641 | raw_path = str(path or "").strip() |
no outgoing calls
no test coverage detected