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

Method eval_on_selector

playwright/_impl/_page.py:479–488  ·  view source on GitHub ↗
(
        self,
        selector: str,
        expression: str,
        arg: Serializable = None,
        strict: bool = None,
    )

Source from the content-addressed store, hash-verified

477 return await self._main_frame.evaluate_handle(expression, arg)
478
479 async def eval_on_selector(
480 self,
481 selector: str,
482 expression: str,
483 arg: Serializable = None,
484 strict: bool = None,
485 ) -> Any:
486 return await self._main_frame.eval_on_selector(
487 selector, expression, arg, strict
488 )
489
490 async def eval_on_selector_all(
491 self,

Calls

no outgoing calls