2020-05-13 10:30:29 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2020 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { JSHandle } from './JSHandle';
|
|
|
|
|
2020-06-22 12:52:39 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
|
|
|
export interface ConsoleMessageLocation {
|
|
|
|
/**
|
|
|
|
* URL of the resource if known or `undefined` otherwise.
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
url?: string;
|
2020-06-22 12:52:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 0-based line number in the resource if known or `undefined` otherwise.
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
lineNumber?: number;
|
2020-06-22 12:52:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 0-based column number in the resource if known or `undefined` otherwise.
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
columnNumber?: number;
|
|
|
|
}
|
|
|
|
|
2020-06-22 12:52:39 +00:00
|
|
|
// Prettier seems to struggle with the ConsoleMessageType declaration
|
|
|
|
// so it is switched off just for that block.
|
|
|
|
/* eslint-disable prettier/prettier */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The supported types for console messages.
|
|
|
|
*/
|
|
|
|
export type ConsoleMessageType = 'log' | 'debug' | 'info' | 'error' | 'warning' |
|
|
|
|
'dir' | 'dirxml' | 'table' | 'trace' | 'clear' | 'startGroup' |
|
|
|
|
'startGroupCollapsed' | 'endGroup' | 'assert' | 'profile' |
|
|
|
|
'profileEnd' | 'count' | 'timeEnd' | 'verbose';
|
|
|
|
|
|
|
|
/* eslint-enable prettier/prettier */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ConsoleMessage objects are dispatched by page via the 'console' event.
|
|
|
|
* @public
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
export class ConsoleMessage {
|
2020-06-22 12:52:39 +00:00
|
|
|
private _type: ConsoleMessageType;
|
2020-05-13 10:30:29 +00:00
|
|
|
private _text: string;
|
|
|
|
private _args: JSHandle[];
|
|
|
|
private _location: ConsoleMessageLocation;
|
|
|
|
|
2020-06-22 12:52:39 +00:00
|
|
|
/**
|
|
|
|
* @public
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
constructor(
|
2020-06-22 12:52:39 +00:00
|
|
|
type: ConsoleMessageType,
|
2020-05-13 10:30:29 +00:00
|
|
|
text: string,
|
|
|
|
args: JSHandle[],
|
|
|
|
location: ConsoleMessageLocation = {}
|
|
|
|
) {
|
|
|
|
this._type = type;
|
|
|
|
this._text = text;
|
|
|
|
this._args = args;
|
|
|
|
this._location = location;
|
|
|
|
}
|
|
|
|
|
2020-06-22 12:52:39 +00:00
|
|
|
/**
|
|
|
|
* @returns The type of the console message.
|
|
|
|
*/
|
|
|
|
type(): ConsoleMessageType {
|
2020-05-13 10:30:29 +00:00
|
|
|
return this._type;
|
|
|
|
}
|
|
|
|
|
2020-06-22 12:52:39 +00:00
|
|
|
/**
|
|
|
|
* @returns The text of the console message.
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
text(): string {
|
|
|
|
return this._text;
|
|
|
|
}
|
|
|
|
|
2020-06-22 12:52:39 +00:00
|
|
|
/**
|
|
|
|
* @returns An array of arguments passed to the console.
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
args(): JSHandle[] {
|
|
|
|
return this._args;
|
|
|
|
}
|
|
|
|
|
2020-06-22 12:52:39 +00:00
|
|
|
/**
|
|
|
|
* @returns The location of the console message.
|
|
|
|
*/
|
2020-05-13 10:30:29 +00:00
|
|
|
location(): ConsoleMessageLocation {
|
|
|
|
return this._location;
|
|
|
|
}
|
|
|
|
}
|