(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 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 |
| 827 | ) -> "Locator": |
| 828 | return self.locator(get_by_label_selector(text, exact=exact)) |
| 829 | |
| 830 | def get_by_placeholder( |
| 831 | self, text: Union[str, Pattern[str]], exact: bool = None |
nothing calls this directly
no test coverage detected