(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 714 | return self.locator(get_by_text_selector(text, exact=exact)) |
| 715 | |
| 716 | def get_by_title( |
| 717 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 718 | ) -> "Locator": |
| 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) |
nothing calls this directly
no test coverage detected