(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 987 | return self._main_frame.get_by_test_id(testId) |
| 988 | |
| 989 | def get_by_text( |
| 990 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 991 | ) -> "Locator": |
| 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 |
no outgoing calls