(
self, text: Union[str, Pattern[str]], exact: bool = None
)
| 254 | ) |
| 255 | |
| 256 | def get_by_alt_text( |
| 257 | self, text: Union[str, Pattern[str]], exact: bool = None |
| 258 | ) -> "Locator": |
| 259 | return self.locator(get_by_alt_text_selector(text, exact=exact)) |
| 260 | |
| 261 | def get_by_label( |
| 262 | self, text: Union[str, Pattern[str]], exact: bool = None |
nothing calls this directly
no test coverage detected