(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 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 |
| 832 | ) -> "Locator": |
| 833 | return self.locator(get_by_placeholder_selector(text, exact=exact)) |
| 834 | |
| 835 | def get_by_role( |
| 836 | self, |
nothing calls this directly
no test coverage detected