WebError
WebError 类表示页面中未处理的异常。它通过 browser_context.on("weberror") 事件分派。
- 同步
- 异步
# Log all uncaught errors to the terminal
context.on("weberror", lambda web_error: print(f"uncaught exception: {web_error.error}"))
# Navigate to a page with an exception.
page.goto("data:text/html,<script>throw new Error('test')</script>")
# Log all uncaught errors to the terminal
context.on("weberror", lambda web_error: print(f"uncaught exception: {web_error.error}"))
# Navigate to a page with an exception.
await page.goto("data:text/html,<script>throw new Error('test')</script>")
属性
error
添加于:v1.38抛出的未处理错误。
用法
web_error.error
返回值
page
添加于:v1.38生成此未处理异常的页面(如果有)。
用法
web_error.page
返回值