(text: Union[str, Pattern[str]], exact: bool = None)
| 925 | |
| 926 | |
| 927 | def get_by_label_selector(text: Union[str, Pattern[str]], exact: bool = None) -> str: |
| 928 | return "internal:label=" + escape_for_text_selector(text, exact=exact) |
| 929 | |
| 930 | |
| 931 | def get_by_alt_text_selector(text: Union[str, Pattern[str]], exact: bool = None) -> str: |
no test coverage detected