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

Method all_text_contents

playwright/_impl/_locator.py:729–734  ·  view source on GitHub ↗
(
        self,
    )

Source from the content-addressed store, hash-verified

727 )
728
729 async def all_text_contents(
730 self,
731 ) -> List[str]:
732 return await self._frame.eval_on_selector_all(
733 self._selector, "ee => ee.map(e => e.textContent || '')"
734 )
735
736 async def wait_for(
737 self,

Calls 1

eval_on_selector_allMethod · 0.45