2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: ConsoleMessage.(constructor)
|
|
|
|
---
|
|
|
|
|
|
|
|
# ConsoleMessage.(constructor)
|
|
|
|
|
|
|
|
Constructs a new instance of the `ConsoleMessage` class
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class ConsoleMessage {
|
|
|
|
constructor(
|
|
|
|
type: ConsoleMessageType,
|
|
|
|
text: string,
|
|
|
|
args: JSHandle[],
|
|
|
|
stackTraceLocations: ConsoleMessageLocation[]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<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>
|