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

Method evaluate_handle

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

Source from the content-addressed store, hash-verified

353 )
354
355 async def evaluate_handle(
356 self, expression: str, arg: Serializable = None
357 ) -> JSHandle:
358 return from_channel(
359 await self._channel.send(
360 "evaluateExpressionHandle",
361 None,
362 dict(
363 expression=expression,
364 arg=serialize_argument(arg),
365 ),
366 )
367 )
368
369 async def query_selector(
370 self, selector: str, strict: bool = None

Callers

nothing calls this directly

Calls 3

from_channelFunction · 0.90
serialize_argumentFunction · 0.90
sendMethod · 0.45

Tested by

no test coverage detected