WebError
WebError 类表示页面中抛出的未处理异常。它通过 BrowserContext.WebError 事件分派。
// Log all uncaught errors to the terminal
context.WebError += (_, webError) =>
{
Console.WriteLine("Uncaught exception: " + webError.Error);
};
方法
错误
新增于: v1.38抛出的未处理错误。
用法
WebError.Error
返回值
页面
新增于: v1.38产生此未处理异常的页面,如果有的话。
用法
WebError.Page
返回值