(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 302 | return self.locator(get_by_test_id_selector(test_id_attribute_name(), testId)) |
| 303 | |
| 304 | def get_by_text( |
| 305 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 306 | ) -> "Locator": |
| 307 | return self.locator(get_by_text_selector(text, exact=exact)) |
| 308 | |
| 309 | def get_by_title( |
| 310 | self, text: Union[str, Pattern[str]], exact: bool = None |
nothing calls this directly
no test coverage detected