(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 871 | return self.locator(get_by_text_selector(text, exact=exact)) |
| 872 | |
| 873 | def get_by_title( |
| 874 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 875 | ) -> "Locator": |
| 876 | return self.locator(get_by_title_selector(text, exact=exact)) |
| 877 | |
| 878 | def frame_locator(self, selector: str) -> "FrameLocator": |
| 879 | return FrameLocator( |
nothing calls this directly
no test coverage detected