MCPcopy
hub / github.com/microsoft/playwright-python / evaluate

Method evaluate

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

Source from the content-addressed store, hash-verified

469 return await self._main_frame.dispatch_event(**locals_to_params(locals()))
470
471 async def evaluate(self, expression: str, arg: Serializable = None) -> Any:
472 return await self._main_frame.evaluate(expression, arg)
473
474 async def evaluate_handle(
475 self, expression: str, arg: Serializable = None

Calls

no outgoing calls