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

Method text_content

playwright/_impl/_page.py:1007–1010  ·  view source on GitHub ↗
(
        self, selector: str, strict: bool = None, timeout: float = None
    )

Source from the content-addressed store, hash-verified

1005 return await self._main_frame.focus(**locals_to_params(locals()))
1006
1007 async def text_content(
1008 self, selector: str, strict: bool = None, timeout: float = None
1009 ) -> Optional[str]:
1010 return await self._main_frame.text_content(**locals_to_params(locals()))
1011
1012 async def inner_text(
1013 self, selector: str, strict: bool = None, timeout: float = None

Calls 1

locals_to_paramsFunction · 0.90