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

Method page_errors

playwright/_impl/_page.py:1489–1495  ·  view source on GitHub ↗
(
        self, filter: Literal["all", "since-navigation"] = None
    )

Source from the content-addressed store, hash-verified

1487 ]
1488
1489 async def page_errors(
1490 self, filter: Literal["all", "since-navigation"] = None
1491 ) -> List[Error]:
1492 error_objects = await self._channel.send(
1493 "pageErrors", None, locals_to_params(locals())
1494 )
1495 return [parse_error(error["error"]) for error in error_objects]
1496
1497 async def clear_console_messages(self) -> None:
1498 await self._channel.send("clearConsoleMessages", None)

Calls 3

locals_to_paramsFunction · 0.90
parse_errorFunction · 0.90
sendMethod · 0.45