(
self, selector: str, strict: bool = None, timeout: float = None
)
| 1000 | return self.main_frame.frame_locator(selector) |
| 1001 | |
| 1002 | async def focus( |
| 1003 | self, selector: str, strict: bool = None, timeout: float = None |
| 1004 | ) -> None: |
| 1005 | return await self._main_frame.focus(**locals_to_params(locals())) |
| 1006 | |
| 1007 | async def text_content( |
| 1008 | self, selector: str, strict: bool = None, timeout: float = None |