(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 992 | return self._main_frame.get_by_text(text, exact=exact) |
| 993 | |
| 994 | def get_by_title( |
| 995 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 996 | ) -> "Locator": |
| 997 | return self._main_frame.get_by_title(text, exact=exact) |
| 998 | |
| 999 | def frame_locator(self, selector: str) -> "FrameLocator": |
| 1000 | return self.main_frame.frame_locator(selector) |
no outgoing calls