(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 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 |
| 670 | ) -> "Locator": |
| 671 | return self.locator(get_by_label_selector(text, exact=exact)) |
| 672 | |
| 673 | def get_by_placeholder( |
| 674 | self, text: Union[str, Pattern[str]], exact: bool = None |
nothing calls this directly
no test coverage detected