(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 941 | ) |
| 942 | |
| 943 | def get_by_alt_text( |
| 944 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 945 | ) -> "Locator": |
| 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 |
no outgoing calls