(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 709 | return self.locator(get_by_test_id_selector(test_id_attribute_name(), testId)) |
| 710 | |
| 711 | def get_by_text( |
| 712 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 713 | ) -> "Locator": |
| 714 | return self.locator(get_by_text_selector(text, exact=exact)) |
| 715 | |
| 716 | def get_by_title( |
| 717 | self, text: Union[str, Pattern[str]], exact: bool = None |
nothing calls this directly
no test coverage detected