(self, selector: str)
| 719 | return self.locator(get_by_title_selector(text, exact=exact)) |
| 720 | |
| 721 | def frame_locator(self, selector: str) -> FrameLocator: |
| 722 | return FrameLocator(self, selector) |
| 723 | |
| 724 | async def focus( |
| 725 | self, selector: str, strict: bool = None, timeout: float = None |
nothing calls this directly
no test coverage detected