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

Method get_by_placeholder

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

Source from the content-addressed store, hash-verified

951 return self._main_frame.get_by_label(text, exact=exact)
952
953 def get_by_placeholder(
954 self, text: Union[str, Pattern[str]], exact: bool = None
955 ) -> "Locator":
956 return self._main_frame.get_by_placeholder(text, exact=exact)
957
958 def get_by_role(
959 self,

Callers 3

test_get_by_escapingFunction · 0.45
test_get_by_placeholderFunction · 0.45
test_get_by_escapingFunction · 0.45

Calls

no outgoing calls

Tested by 3

test_get_by_escapingFunction · 0.36
test_get_by_placeholderFunction · 0.36
test_get_by_escapingFunction · 0.36