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

Method evaluate_handle

playwright/_impl/_page.py:1549–1561  ·  view source on GitHub ↗
(
        self, expression: str, arg: Serializable = None
    )

Source from the content-addressed store, hash-verified

1547 )
1548
1549 async def evaluate_handle(
1550 self, expression: str, arg: Serializable = None
1551 ) -> JSHandle:
1552 return from_channel(
1553 await self._channel.send(
1554 "evaluateExpressionHandle",
1555 None,
1556 dict(
1557 expression=expression,
1558 arg=serialize_argument(arg),
1559 ),
1560 )
1561 )
1562
1563 def expect_event(
1564 self,

Callers

nothing calls this directly

Calls 3

from_channelFunction · 0.90
serialize_argumentFunction · 0.90
sendMethod · 0.45

Tested by

no test coverage detected