(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 866 | return self.locator(get_by_test_id_selector(test_id_attribute_name(), testId)) |
| 867 | |
| 868 | def get_by_text( |
| 869 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 870 | ) -> "Locator": |
| 871 | return self.locator(get_by_text_selector(text, exact=exact)) |
| 872 | |
| 873 | def get_by_title( |
| 874 | self, text: Union[str, Pattern[str]], exact: bool = None |
nothing calls this directly
no test coverage detected