(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 818 | ) |
| 819 | |
| 820 | def get_by_alt_text( |
| 821 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 822 | ) -> "Locator": |
| 823 | return self.locator(get_by_alt_text_selector(text, exact=exact)) |
| 824 | |
| 825 | def get_by_label( |
| 826 | self, text: Union[str, Pattern[str]], exact: bool = None |
nothing calls this directly
no test coverage detected