UNPKG

puppeteer-core

Version:

A high-level API to control headless Chrome over the DevTools Protocol

62 lines 1.4 kB
"use strict"; /** * @license * Copyright 2020 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ConsoleMessage = void 0; /** * ConsoleMessage objects are dispatched by page via the 'console' event. * @public */ class ConsoleMessage { #type; #text; #args; #stackTraceLocations; #frame; /** * @internal */ constructor(type, text, args, stackTraceLocations, frame) { this.#type = type; this.#text = text; this.#args = args; this.#stackTraceLocations = stackTraceLocations; this.#frame = frame; } /** * The type of the console message. */ type() { return this.#type; } /** * The text of the console message. */ text() { return this.#text; } /** * An array of arguments passed to the console. */ args() { return this.#args; } /** * The location of the console message. */ location() { return (this.#stackTraceLocations[0] ?? (this.#frame ? { url: this.#frame.url() } : {})); } /** * The array of locations on the stack of the console message. */ stackTrace() { return this.#stackTraceLocations; } } exports.ConsoleMessage = ConsoleMessage; //# sourceMappingURL=ConsoleMessage.js.map