(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 661 | ) |
| 662 | |
| 663 | def get_by_alt_text( |
| 664 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 665 | ) -> "Locator": |
| 666 | return self.locator(get_by_alt_text_selector(text, exact=exact)) |
| 667 | |
| 668 | def get_by_label( |
| 669 | self, text: Union[str, Pattern[str]], exact: bool = None |
nothing calls this directly
no test coverage detected