puppeteer/new-docs/puppeteer.protocol.runtime.stacktrace.md

24 lines
1.3 KiB
Markdown
Raw Normal View History

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Protocol](./puppeteer.protocol.md) &gt; [Runtime](./puppeteer.protocol.runtime.md) &gt; [StackTrace](./puppeteer.protocol.runtime.stacktrace.md)
## Protocol.Runtime.StackTrace interface
Call frames for assertions or error messages.
<b>Signature:</b>
```typescript
export interface StackTrace
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [callFrames](./puppeteer.protocol.runtime.stacktrace.callframes.md) | [CallFrame](./puppeteer.protocol.runtime.callframe.md)<!-- -->\[\] | JavaScript function name. |
| [description](./puppeteer.protocol.runtime.stacktrace.description.md) | string | String label of this stack trace. For async traces this may be a name of the function that initiated the async call. |
| [parent](./puppeteer.protocol.runtime.stacktrace.parent.md) | [StackTrace](./puppeteer.protocol.runtime.stacktrace.md) | Asynchronous JavaScript stack trace that preceded this stack, if available. |
| [parentId](./puppeteer.protocol.runtime.stacktrace.parentid.md) | [StackTraceId](./puppeteer.protocol.runtime.stacktraceid.md) | Asynchronous JavaScript stack trace that preceded this stack, if available. |