(text: Union[str, Pattern[str]], exact: bool = None)
| 943 | |
| 944 | |
| 945 | def get_by_text_selector(text: Union[str, Pattern[str]], exact: bool = None) -> str: |
| 946 | return "internal:text=" + escape_for_text_selector(text, exact=exact) |
| 947 | |
| 948 | |
| 949 | def bool_to_js_bool(value: bool) -> str: |
no test coverage detected