(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 946 | return self._main_frame.get_by_alt_text(text, exact=exact) |
| 947 | |
| 948 | def get_by_label( |
| 949 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 950 | ) -> "Locator": |
| 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 |
no outgoing calls