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

Method eval_on_selector_all

playwright/_impl/_frame.py:481–497  ·  view source on GitHub ↗
(
        self,
        selector: str,
        expression: str,
        arg: Serializable = None,
    )

Source from the content-addressed store, hash-verified

479 )
480
481 async def eval_on_selector_all(
482 self,
483 selector: str,
484 expression: str,
485 arg: Serializable = None,
486 ) -> Any:
487 return parse_result(
488 await self._channel.send(
489 "evalOnSelectorAll",
490 None,
491 dict(
492 selector=selector,
493 expression=expression,
494 arg=serialize_argument(arg),
495 ),
496 )
497 )
498
499 async def content(self) -> str:
500 return await self._channel.send("content", None)

Callers

nothing calls this directly

Calls 3

parse_resultFunction · 0.90
serialize_argumentFunction · 0.90
sendMethod · 0.45

Tested by

no test coverage detected