(text: Union[str, Pattern[str]], exact: bool = None)
| 933 | |
| 934 | |
| 935 | def get_by_title_selector(text: Union[str, Pattern[str]], exact: bool = None) -> str: |
| 936 | return get_by_attribute_text_selector("title", text, exact=exact) |
| 937 | |
| 938 | |
| 939 | def get_by_placeholder_selector( |
no test coverage detected