MCPcopy Create free account
hub / github.com/microsoft/playwright-python / get_by_title

Method get_by_title

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

Source from the content-addressed store, hash-verified

992 return self._main_frame.get_by_text(text, exact=exact)
993
994 def get_by_title(
995 self, text: Union[str, Pattern[str]], exact: bool = None
996 ) -> "Locator":
997 return self._main_frame.get_by_title(text, exact=exact)
998
999 def frame_locator(self, selector: str) -> "FrameLocator":
1000 return self.main_frame.frame_locator(selector)

Callers 3

test_get_by_escapingFunction · 0.45
test_get_by_titleFunction · 0.45
test_get_by_escapingFunction · 0.45

Calls

no outgoing calls

Tested by 3

test_get_by_escapingFunction · 0.36
test_get_by_titleFunction · 0.36
test_get_by_escapingFunction · 0.36