(text: Union[str, Pattern[str]], exact: bool = None)
| 929 | |
| 930 | |
| 931 | def get_by_alt_text_selector(text: Union[str, Pattern[str]], exact: bool = None) -> str: |
| 932 | return get_by_attribute_text_selector("alt", text, exact=exact) |
| 933 | |
| 934 | |
| 935 | def get_by_title_selector(text: Union[str, Pattern[str]], exact: bool = None) -> str: |
no test coverage detected