25 lines
1.2 KiB
Markdown
25 lines
1.2 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Runtime](./puppeteer.protocol.runtime.md) > [CallFrame](./puppeteer.protocol.runtime.callframe.md)
|
|
|
|
## Protocol.Runtime.CallFrame interface
|
|
|
|
Stack entry for runtime errors and assertions.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
export interface CallFrame
|
|
```
|
|
|
|
## Properties
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [columnNumber](./puppeteer.protocol.runtime.callframe.columnnumber.md) | [integer](./puppeteer.protocol.integer.md) | JavaScript script column number (0-based). |
|
|
| [functionName](./puppeteer.protocol.runtime.callframe.functionname.md) | string | JavaScript function name. |
|
|
| [lineNumber](./puppeteer.protocol.runtime.callframe.linenumber.md) | [integer](./puppeteer.protocol.integer.md) | JavaScript script line number (0-based). |
|
|
| [scriptId](./puppeteer.protocol.runtime.callframe.scriptid.md) | [ScriptId](./puppeteer.protocol.runtime.scriptid.md) | JavaScript script id. |
|
|
| [url](./puppeteer.protocol.runtime.callframe.url.md) | string | JavaScript script name or url. |
|
|
|