puppeteer/docs/api/puppeteer.consolemessage._constructor_.md

82 lines
863 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: ConsoleMessage.(constructor)
---
# ConsoleMessage.(constructor)
Constructs a new instance of the `ConsoleMessage` class
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class ConsoleMessage {
constructor(
type: ConsoleMessageType,
text: string,
args: JSHandle[],
stackTraceLocations: ConsoleMessageLocation[]
);
}
```
## Parameters
<table><thead><tr><th>
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
type
</td><td>
[ConsoleMessageType](./puppeteer.consolemessagetype.md)
</td><td>
</td></tr>
<tr><td>
text
</td><td>
string
</td><td>
</td></tr>
<tr><td>
args
</td><td>
[JSHandle](./puppeteer.jshandle.md)\[\]
</td><td>
</td></tr>
<tr><td>
stackTraceLocations
</td><td>
[ConsoleMessageLocation](./puppeteer.consolemessagelocation.md)\[\]
</td><td>
</td></tr>
</tbody></table>