(
self, selector: str, strict: bool = None, timeout: float = 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 |
| 1009 | ) -> Optional[str]: |
| 1010 | return await self._main_frame.text_content(**locals_to_params(locals())) |
| 1011 | |
| 1012 | async def inner_text( |
| 1013 | self, selector: str, strict: bool = None, timeout: float = None |