MCPcopy Index your code
hub / github.com/microsoft/playwright-python / get_by_title

Method get_by_title

playwright/_impl/_locator.py:873–876  ·  view source on GitHub ↗
(
        self, text: Union[str, Pattern[str]], exact: bool = None
    )

Source from the content-addressed store, hash-verified

871 return self.locator(get_by_text_selector(text, exact=exact))
872
873 def get_by_title(
874 self, text: Union[str, Pattern[str]], exact: bool = None
875 ) -> "Locator":
876 return self.locator(get_by_title_selector(text, exact=exact))
877
878 def frame_locator(self, selector: str) -> "FrameLocator":
879 return FrameLocator(

Callers

nothing calls this directly

Calls 2

locatorMethod · 0.95
get_by_title_selectorFunction · 0.85

Tested by

no test coverage detected