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

Method evaluate_handle

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

Source from the content-addressed store, hash-verified

472 return await self._main_frame.evaluate(expression, arg)
473
474 async def evaluate_handle(
475 self, expression: str, arg: Serializable = None
476 ) -> JSHandle:
477 return await self._main_frame.evaluate_handle(expression, arg)
478
479 async def eval_on_selector(
480 self,

Calls

no outgoing calls