(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 307 | return self.locator(get_by_text_selector(text, exact=exact)) |
| 308 | |
| 309 | def get_by_title( |
| 310 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 311 | ) -> "Locator": |
| 312 | return self.locator(get_by_title_selector(text, exact=exact)) |
| 313 | |
| 314 | def frame_locator(self, selector: str) -> "FrameLocator": |
| 315 | return FrameLocator(self._frame, self._selector + " >> " + selector) |
nothing calls this directly
no test coverage detected