(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 951 | return self._main_frame.get_by_label(text, exact=exact) |
| 952 | |
| 953 | def get_by_placeholder( |
| 954 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 955 | ) -> "Locator": |
| 956 | return self._main_frame.get_by_placeholder(text, exact=exact) |
| 957 | |
| 958 | def get_by_role( |
| 959 | self, |
no outgoing calls