(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 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 |
| 675 | ) -> "Locator": |
| 676 | return self.locator(get_by_placeholder_selector(text, exact=exact)) |
| 677 | |
| 678 | def get_by_role( |
| 679 | self, |
nothing calls this directly
no test coverage detected