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

Method evaluate_handle

playwright/_impl/_locator.py:201–206  ·  view source on GitHub ↗
(
        self, expression: str, arg: Serializable = None, timeout: float = None
    )

Source from the content-addressed store, hash-verified

199 return await self._frame.eval_on_selector_all(self._selector, **params)
200
201 async def evaluate_handle(
202 self, expression: str, arg: Serializable = None, timeout: float = None
203 ) -> "JSHandle":
204 return await self._with_element(
205 lambda h, _: h.evaluate_handle(expression, arg), timeout
206 )
207
208 async def fill(
209 self,

Callers

nothing calls this directly

Calls 1

_with_elementMethod · 0.95

Tested by

no test coverage detected